summaryrefslogtreecommitdiff
path: root/asm/macros
diff options
context:
space:
mode:
Diffstat (limited to 'asm/macros')
-rw-r--r--asm/macros/event.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc
index ab7b06932..1be118154 100644
--- a/asm/macros/event.inc
+++ b/asm/macros/event.inc
@@ -1627,9 +1627,9 @@
call EventScript_SetGymTrainers
.endm
- @ Appears frequently at start of NPC scripts. Should be used once named/understood
- .macro unk_questlog
- special sub_8110AB4
+ @ Jumps to dest if the Quest Log is currently showing playback scenes (dest is usually a release/end)
+ .macro goto_if_questlog dest:req
+ special Special_GetQuestLogState
compare VAR_RESULT, 2
- goto_if_eq EventScript_1A7AE0
+ goto_if_eq \dest
.endm