summaryrefslogtreecommitdiff
path: root/constants
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2017-07-19 22:16:44 -0700
committerMarcus Huderle <huderlem@gmail.com>2017-07-19 22:16:44 -0700
commitf56a2fc512cfd0ff348f255a913bdeab29476893 (patch)
treec2dd768b98b79399c39083839993bb80b253e268 /constants
parent504e04e292a309ca6e9a12c0c5e3fbd8bd7bab13 (diff)
Fix SPECIAL_MODE_ constants. They were mislabeled.
Diffstat (limited to 'constants')
-rw-r--r--constants/pinball_game_constants.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/constants/pinball_game_constants.asm b/constants/pinball_game_constants.asm
index fb7152d..f50ba26 100644
--- a/constants/pinball_game_constants.asm
+++ b/constants/pinball_game_constants.asm
@@ -3,9 +3,9 @@ MAX_PIKACHU_SAVER_CHARGE EQU 15
CATCHEM_MODE_SLOT_REWARD EQU 1
EVOLUTION_MODE_SLOT_REWARD EQU 2
-SPECIAL_MODE_CATCHEM EQU 1
-SPECIAL_MODE_EVOLUTION EQU 2
-SPECIAL_MODE_MAP_MOVE EQU 2 ; shares value with SPECIAL_MODE_EVOLUTION
+SPECIAL_MODE_CATCHEM EQU 0
+SPECIAL_MODE_EVOLUTION EQU 1
+SPECIAL_MODE_MAP_MOVE EQU 2
; To encounter Mew, you must first beat Mewtwo's bonus stage 2 times.
NUM_MEWTWO_COMPLETIONS_FOR_MEW EQU 2