mirror of
https://github.com/ppy/osu
synced 2025-01-20 13:00:54 +00:00
Fix backwards repeat check
This commit is contained in:
parent
48ce68694a
commit
25373c3f9c
@ -1433,7 +1433,7 @@ namespace osu.Game
|
|||||||
case GlobalAction.NextVolumeMeter:
|
case GlobalAction.NextVolumeMeter:
|
||||||
case GlobalAction.PreviousVolumeMeter:
|
case GlobalAction.PreviousVolumeMeter:
|
||||||
|
|
||||||
if (!e.Repeat)
|
if (e.Repeat)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return volume.Adjust(e.Action);
|
return volume.Adjust(e.Action);
|
||||||
|
Loading…
Reference in New Issue
Block a user