You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
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.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user