1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Update TaikoRulesetContainer.cs

Remove code that I am almost 100% sure that makes barlines every 1/1 instead of 4/1.
This commit is contained in:
nl-tatatat 2018-06-24 04:48:38 -05:00 committed by GitHub
parent 9cec769191
commit 09b2025fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,8 +70,6 @@ namespace osu.Game.Rulesets.Taiko.UI
Playfield.Add(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
double bl = currentPoint.BeatLength;
if (bl < 800)
bl *= (int)currentPoint.TimeSignature;
time += bl;
currentBeat++;