Add a LANDMARK_ prefix to landmark constants

Resolves #697
This commit is contained in:
Rangi
2020-03-15 17:26:10 -04:00
parent 65f22544e0
commit ad50e94b50
37 changed files with 630 additions and 630 deletions

View File

@@ -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::