diff options
author | dannye <33dannye@gmail.com> | 2021-02-02 23:17:30 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-02-02 23:17:50 -0600 |
commit | dd304349c3e19bfe5d3cec3666367cc561b2d833 (patch) | |
tree | 920cd2e9c76d78cf764d8dbc9165134be309d789 /src/macros | |
parent | d9b38ec4f18f96e3bef4b38c451fff0303f1b671 (diff) |
Enumerate all event var values
Diffstat (limited to 'src/macros')
-rw-r--r-- | src/macros/scripts.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/macros/scripts.asm b/src/macros/scripts.asm index fd8aacf..192fe93 100644 --- a/src/macros/scripts.asm +++ b/src/macros/scripts.asm @@ -86,7 +86,7 @@ ENDM const ScriptCommand_RecordMasterWin_index ; $4e const ScriptCommand_AskQuestionJumpDefaultYes_index ; $4f const ScriptCommand_ShowSamNormalMultichoice_index ; $50 - const ScriptCommand_ShowSamTutorialMultichoice_index ; $51 + const ScriptCommand_ShowSamRulesMultichoice_index ; $51 const ScriptCommand_ChallengeMachine_index ; $52 const ScriptCommand_EndScript2_index ; $53 const ScriptCommand_EndScript3_index ; $54 @@ -624,8 +624,8 @@ show_sam_normal_multichoice: MACRO run_command ScriptCommand_ShowSamNormalMultichoice ENDM -show_sam_tutorial_multichoice: MACRO - run_command ScriptCommand_ShowSamTutorialMultichoice +show_sam_rules_multichoice: MACRO + run_command ScriptCommand_ShowSamRulesMultichoice ENDM ; Runs the Challenge Machine |