mirror of
https://github.com/ppy/osu
synced 2024-12-16 03:45:46 +00:00
Merge pull request #2879 from peppy/taiko-barline-regression
Fix taiko barlines appearing too often
This commit is contained in:
commit
a3079c9303
@ -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