diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-23 12:40:29 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-23 12:40:29 -0500 |
commit | c5cc23a35fa2c544e3fa8f5101878ba2127ca83e (patch) | |
tree | a4e64836ff970e4338a46d66c8b4c3c48e29bc01 /engine/scripting.asm | |
parent | 682548493be7f20b8b7fb26ab0c367c3c24430ed (diff) |
wGameTimerPause bit flag constants
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 1ecdc016c..a3c906a83 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -2804,12 +2804,12 @@ Script_halloffame: ; script command 0xa1 ld hl, wGameTimerPause - res 0, [hl] + res GAMETIMERPAUSE_TIMER_PAUSED_F, [hl] farcall StubbedTrainerRankings_HallOfFame farcall StubbedTrainerRankings_HallOfFame2 farcall HallOfFame ld hl, wGameTimerPause - set 0, [hl] + set GAMETIMERPAUSE_TIMER_PAUSED_F, [hl] jr ReturnFromCredits Script_credits: |