1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 08:07:26 +08:00

Merge remote-tracking branch 'upstream/master' into frankhjwx-catch_star_rating

This commit is contained in:
Dean Herbert 2018-06-21 17:49:13 +09:00
commit 999d3a240d

View File

@ -185,9 +185,9 @@ namespace osu.Game.Screens.Edit
protected override bool OnScroll(InputState state)
{
if (state.Mouse.ScrollDelta.X + state.Mouse.ScrollDelta.Y > 0)
clock.SeekBackward(true);
clock.SeekBackward(!clock.IsRunning);
else
clock.SeekForward(true);
clock.SeekForward(!clock.IsRunning);
return true;
}