1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 16:12:54 +08:00

Revert keyboard seek speed change

This commit is contained in:
Dean Herbert 2024-01-22 21:47:38 +09:00
parent 7f31070b87
commit 15df6b1da1
No known key found for this signature in database

View File

@ -107,11 +107,11 @@ namespace osu.Game.Screens.Play
return true;
case GlobalAction.SeekReplayBackward:
SeekInDirection(-1);
SeekInDirection(-5);
return true;
case GlobalAction.SeekReplayForward:
SeekInDirection(1);
SeekInDirection(5);
return true;
case GlobalAction.TogglePauseReplay: