summaryrefslogtreecommitdiff
path: root/data/wild
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2015-02-08 00:03:32 -0800
committeryenatch <yenatch@gmail.com>2015-02-10 00:53:03 -0800
commit8e033210694533bc1233a851d6914e1f0cb90232 (patch)
tree9c526de647aecbdb2dc81da6cb939ffa1d7d707d /data/wild
parent0683bc87701e6b4c357fb7b21927c17ceb87a6de (diff)
Blindly use wram labels for everything except mobile, part 1.
Wram banks and mobile make this tough, since any address can secretly be a ghost. As usual, mobile completely disregards 99% of the codebase. It's been ignored in kind.
Diffstat (limited to 'data/wild')
-rw-r--r--data/wild/fish.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/wild/fish.asm b/data/wild/fish.asm
index 44a30a0b2..0bb7a812c 100644
--- a/data/wild/fish.asm
+++ b/data/wild/fish.asm
@@ -122,7 +122,7 @@ GetFishGroupHeader: ; 9245b
; Return fishing encounter group header d in de.
push hl
- ld hl, $dc1e
+ ld hl, wdc1e
bit 2, [hl]
pop hl
jr z, .end
@@ -141,14 +141,14 @@ GetFishGroupHeader: ; 9245b
ret
.group11
- ld a, [$dfce]
+ ld a, [wdfce]
cp 1
jr nz, .end
ld d, 6
jr .end
.group12
- ld a, [$dfce]
+ ld a, [wdfce]
cp 2
jr nz, .end
ld d, 7