Added bit constants into the catchem mode.

This commit is contained in:
Xillicis 2024-12-30 14:54:00 -07:00
parent 0cc65abaf0
commit 9e80ef2087

View File

@ -1076,7 +1076,7 @@ SetPokemonSeenFlag: ; 0x10753
ld b, $0
ld hl, wPokedexFlags
add hl, bc
set 0, [hl]
set BIT_POKEDEX_MON_SEEN, [hl]
ld hl, wPokedexFlags
ld de, sPokedexFlags
ld bc, $0098
@ -1097,7 +1097,7 @@ SetPokemonOwnedFlag: ; 0x1077c
ld b, $0
ld hl, wPokedexFlags
add hl, bc
set 1, [hl]
set BIT_POKEDEX_MON_CAUGHT, [hl]
ld hl, wPokedexFlags
ld de, sPokedexFlags
ld bc, $0098