diff options
author | Astatin <[email protected]> | 2025-08-19 17:36:46 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-08-19 17:36:46 +0200 |
commit | 2695e4c42c4bd8007803cf674384a8a34bcd78ef (patch) | |
tree | 3f69d28c7e43b966ce1ffbb2e0298d8eccdcc46e /dialogues | |
parent | bbc5ab6ad02dbabcb79e1e83195288c0fb8cf1d1 (diff) |
Do not close dialogue on start button
Diffstat (limited to 'dialogues')
-rw-r--r-- | dialogues/functions.gbasm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dialogues/functions.gbasm b/dialogues/functions.gbasm index 366abf9..237f3e9 100644 --- a/dialogues/functions.gbasm +++ b/dialogues/functions.gbasm @@ -79,7 +79,7 @@ Dialogue_script_instruction_Jump_Table: POP HL LD A, $mem_display_flag - AND $40 ; Keeping the object ones + AND $c0 ; Keeping the object ones OR $05 LD $mem_display_flag, A @@ -117,7 +117,7 @@ Dialogue_script_instruction_Jump_Table: POP HL LD A, $mem_display_flag - AND $40 ; Keeping the object ones + AND $c0 ; Keeping the object ones OR $07 LD $mem_display_flag, A @@ -176,7 +176,7 @@ Dialogue_script_instruction_Jump_Table: POP HL LD A, $mem_display_flag - AND $40 ; Keeping the object ones + AND $c0 ; Keeping the object ones OR $07 LD $mem_display_flag, A |