Fix backwards repeat check

This commit is contained in:
Bartłomiej Dach 2024-12-20 09:50:58 +01:00
parent 48ce68694a
commit 25373c3f9c
No known key found for this signature in database

View File

@ -1433,7 +1433,7 @@ namespace osu.Game
case GlobalAction.NextVolumeMeter:
case GlobalAction.PreviousVolumeMeter:
if (!e.Repeat)
if (e.Repeat)
return true;
return volume.Adjust(e.Action);