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:
parent
834eeb6d98
commit
96660b2cca
@ -75,7 +75,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
if (FrameCount == 0)
|
||||
return;
|
||||
|
||||
if (FrameCount <= currentFrame)
|
||||
if (currentFrame >= FrameCount)
|
||||
currentFrame = 0;
|
||||
|
||||
GotoFrame(currentFrame);
|
||||
|
Loading…
Reference in New Issue
Block a user