mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix off-by-one starting bar
This commit is contained in:
@ -76,7 +76,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
base.OnNewBeat(beatIndex, timingPoint, effectPoint, amplitudes);
|
||||
|
||||
if (beatIndex < firstBeat || !firstBeat.HasValue)
|
||||
firstBeat = Math.Max(0, beatIndex / 16 * 16);
|
||||
firstBeat = Math.Max(0, (beatIndex / 16 + 1) * 16);
|
||||
|
||||
if (beatIndex > firstBeat)
|
||||
{
|
||||
|
Reference in New Issue
Block a user