mirror of
https://github.com/ppy/osu
synced 2025-01-11 08:39:31 +00:00
Fix HitCircleLongCombo test stacking off-screen
This commit is contained in:
parent
fd3e2375bb
commit
adc2dfa6c6
@ -29,7 +29,8 @@ namespace osu.Game.Rulesets.Osu.Tests
|
||||
};
|
||||
|
||||
for (int i = 0; i < 512; i++)
|
||||
beatmap.HitObjects.Add(new HitCircle { Position = new Vector2(256, 192), StartTime = i * 100 });
|
||||
if (i % 32 < 20)
|
||||
beatmap.HitObjects.Add(new HitCircle { Position = new Vector2(256, 192), StartTime = i * 100 });
|
||||
|
||||
return beatmap;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user