1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 04:02:59 +08:00

Flip frame count check

This commit is contained in:
Craftplacer 2020-04-27 23:18:40 +02:00
parent 834eeb6d98
commit 96660b2cca

View File

@ -75,7 +75,7 @@ namespace osu.Game.Rulesets.Taiko.UI
if (FrameCount == 0)
return;
if (FrameCount <= currentFrame)
if (currentFrame >= FrameCount)
currentFrame = 0;
GotoFrame(currentFrame);