From 052e3c4ab3d6ace81f535976955fbd2b5e82193a Mon Sep 17 00:00:00 2001 From: Mihai Alexandru <77043862+MAJigsaw77@users.noreply.github.com> Date: Fri, 21 Jun 2024 15:16:50 +0300 Subject: [PATCH] Fix dialogue pause button. --- source/funkin/play/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index 3f1ec72624..7a3af8f538 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -2810,7 +2810,7 @@ class PlayState extends MusicBeatSubState if (currentConversation != null) { // Pause/unpause may conflict with advancing the conversation! - if ((controls.CUTSCENE_ADVANCE || TouchUtil.justPressed) && !justUnpaused) + if ((controls.CUTSCENE_ADVANCE #if mobile || (!pauseButtonCheck && TouchUtil.justPressed) #end) && !justUnpaused) { currentConversation.advanceConversation(); }