mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 17:37:23 +09: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 = () =>
|
OnPause = () =>
|
||||||
{
|
{
|
||||||
pauseContainer.Retries = RestartCount;
|
pauseContainer.Retries = RestartCount;
|
||||||
hudOverlay.KeyCounter.IsCounting = pauseContainer.IsPaused;
|
hudOverlay.KeyCounter.IsCounting = !pauseContainer.IsPaused;
|
||||||
},
|
},
|
||||||
OnResume = () => hudOverlay.KeyCounter.IsCounting = true,
|
OnResume = () => hudOverlay.KeyCounter.IsCounting = true,
|
||||||
Children = new[]
|
Children = new[]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user