summaryrefslogtreecommitdiff
path: root/main.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2017-12-28 21:22:35 -0500
committeryenatch <yenatch@gmail.com>2017-12-28 22:13:39 -0500
commitb9a68fec2589eb6969be63e6ed1eb3fca312c307 (patch)
tree59b5db70690a9f9041e4964adae1722b4d178a1b /main.asm
parent4c35f3ac8506e5f326658bbab91c257584f7b716 (diff)
Consistent if/else/endc (matches rept/endr) and DEF (matches BANK/HIGH/LOW)
Diffstat (limited to 'main.asm')
-rw-r--r--main.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.asm b/main.asm
index d28bdf559..5c036e3d8 100644
--- a/main.asm
+++ b/main.asm
@@ -645,8 +645,8 @@ INCLUDE "engine/events/odd_egg.asm"
SECTION "Mobile Stadium 2", ROMX
-IF DEF(CRYSTAL11)
+if DEF(CRYSTAL11)
INCBIN "mobile/stadium/stadium2_2.bin"
-ELSE
+else
INCBIN "mobile/stadium/stadium2_1.bin"
-ENDC
+endc