From 3107d62053246bb8dc263fd178f6dc8140f1663d Mon Sep 17 00:00:00 2001 From: MtH Date: Wed, 17 Mar 2021 19:15:00 +0100 Subject: [PATCH] make pause actually use the pause control --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index ce428753f..2a678c8de 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1348,7 +1348,7 @@ class PlayState extends MusicBeatState scoreTxt.text = "Score:" + songScore; - if (FlxG.keys.justPressed.ENTER && startedCountdown && canPause) + if (controls.PAUSE && startedCountdown && canPause) { persistentUpdate = false; persistentDraw = true;