Use YES/NO constants for MSGBOX_YESNO

This commit is contained in:
GriffinR
2019-11-02 12:34:53 -04:00
committed by huderlem
parent a90b828bb8
commit 033c6cea3b
111 changed files with 432 additions and 432 deletions

View File

@@ -134,18 +134,18 @@ MtPyre_Summit_EventScript_OldMan:: @ 823213C
faceplayer
goto_if_set FLAG_SOOTOPOLIS_ARCHIE_MAXIE_LEAVE, MtPyre_Summit_EventScript_OldManAfterRayquaza
msgbox MtPyre_Summit_Text_WillYouHearOutMyTale, MSGBOX_YESNO
compare VAR_RESULT, 1
compare VAR_RESULT, YES
call_if_eq MtPyre_Summit_EventScript_OldManTale
compare VAR_RESULT, 0
compare VAR_RESULT, NO
call_if_eq MtPyre_Summit_EventScript_DeclineOldManTale
release
end
MtPyre_Summit_EventScript_OldManAfterRayquaza:: @ 8232167
msgbox MtPyre_Summit_Text_HearTheNewLegendOfHoenn, MSGBOX_YESNO
compare VAR_RESULT, 1
compare VAR_RESULT, YES
call_if_eq MtPyre_Summit_EventScript_OldManNewTale
compare VAR_RESULT, 0
compare VAR_RESULT, NO
call_if_eq MtPyre_Summit_EventScript_DeclineOldManTale
release
end