mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 13:37:25 +08:00
Fix KeyCounter counting clicks when game is paused
This commit is contained in:
parent
7c3b0dc919
commit
c8697e1743
@ -169,7 +169,7 @@ namespace osu.Game.Screens.Play
|
||||
OnPause = () =>
|
||||
{
|
||||
pauseContainer.Retries = RestartCount;
|
||||
hudOverlay.KeyCounter.IsCounting = pauseContainer.IsPaused;
|
||||
hudOverlay.KeyCounter.IsCounting = !pauseContainer.IsPaused;
|
||||
},
|
||||
OnResume = () => hudOverlay.KeyCounter.IsCounting = true,
|
||||
Children = new[]
|
||||
|
Loading…
Reference in New Issue
Block a user