mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:58:21 +08:00
Fix incorrect implementation
This commit is contained in:
parent
63448dc9dc
commit
d7133f059d
@ -69,9 +69,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
bool isMajor = currentBeat % (int)currentPoint.TimeSignature == 0;
|
||||
Playfield.Add(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
|
||||
|
||||
double bl = currentPoint.BeatLength;
|
||||
|
||||
time += bl;
|
||||
time += currentPoint.BeatLength * (int)currentPoint.TimeSignature;
|
||||
currentBeat++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user