summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/region.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/region.asm b/home/region.asm
index eedcbbee4..185f5ed25 100644
--- a/home/region.asm
+++ b/home/region.asm
@@ -7,10 +7,10 @@ IsInJohto::
ld c, a
call GetWorldMapLocation
- cp FAST_SHIP
+ cp LANDMARK_FAST_SHIP
jr z, .Johto
- cp SPECIAL_MAP
+ cp LANDMARK_SPECIAL
jr nz, .CheckRegion
ld a, [wBackupMapGroup]
@@ -24,11 +24,11 @@ IsInJohto::
jr nc, .Kanto
.Johto:
- xor a
+ xor a ; JOHTO_REGION
ret
.Kanto:
- ld a, 1
+ ld a, KANTO_REGION
ret
ret_2f3e::