mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
Merge pull request #3035 from turbedi/patch-1
Fix KeyCounter counting clicks when game is paused
This commit is contained in:
commit
8e5c93e3ca
@ -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