summaryrefslogtreecommitdiff
path: root/home/pokedex_flags.asm
diff options
context:
space:
mode:
authorlibjet <libj3t@gmail.com>2020-03-16 00:44:13 +0000
committerlibjet <libj3t@gmail.com>2020-03-16 00:44:13 +0000
commit6231351906960364a5ad2f34efefd809cceb0eb8 (patch)
tree709f2f908d9e1c2f7a882d628ff09b80de3c9e8b /home/pokedex_flags.asm
parent4ad17cc30e6b70be19badd175558c438fc9adaf6 (diff)
Sync home/ with pokecrystal
Diffstat (limited to 'home/pokedex_flags.asm')
-rw-r--r--home/pokedex_flags.asm7
1 files changed, 5 insertions, 2 deletions
diff --git a/home/pokedex_flags.asm b/home/pokedex_flags.asm
index fe866ba9..5c12da51 100644
--- a/home/pokedex_flags.asm
+++ b/home/pokedex_flags.asm
@@ -37,6 +37,8 @@ SetSeenAndCaughtMon::
ld b, SET_FLAG
call PokedexFlagAction
pop af
+ ; fallthrough
+
SetSeenMon::
ld c, a
ld hl, wPokedexSeen
@@ -53,10 +55,11 @@ CheckSeenMon::
ld c, a
ld hl, wPokedexSeen
ld b, CHECK_FLAG
-PokedexFlagAction:: ; 35e4 (0:35e4)
+ ; fallthrough
+
+PokedexFlagAction::
ld d, 0
predef SmallFarFlagAction
ld a, c
and a
ret
-