Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Fix dialogue pause button.
Browse files Browse the repository at this point in the history
  • Loading branch information
MAJigsaw77 authored Jun 21, 2024
1 parent 2964a6e commit 052e3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/funkin/play/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 052e3c4

Please sign in to comment.