mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Fix KeyCounter counting clicks when game is paused
This commit is contained in:
@ -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[]
|
||||||
|
Reference in New Issue
Block a user