diff options
author | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
commit | cf2acc100193f599b4521a961c9bff6a78be8217 (patch) | |
tree | 8d79a8a8f7f192ecabdd7a6c9fbfcdab7b5dffb8 /home/pokedex_flags.asm | |
parent | adb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff) |
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/pokedex_flags.asm')
-rw-r--r-- | home/pokedex_flags.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/home/pokedex_flags.asm b/home/pokedex_flags.asm index bcd0f2afa..0ad13b497 100644 --- a/home/pokedex_flags.asm +++ b/home/pokedex_flags.asm @@ -1,4 +1,4 @@ -SetSeenAndCaughtMon: ; 3380 +SetSeenAndCaughtMon:: ; 3380 push af ld c, a ld hl, PokedexCaught @@ -8,28 +8,28 @@ SetSeenAndCaughtMon: ; 3380 ; fallthrough ; 338b -SetSeenMon: ; 338b +SetSeenMon:: ; 338b ld c, a ld hl, PokedexSeen ld b, SET_FLAG jr PokedexFlagAction ; 3393 -CheckCaughtMon: ; 3393 +CheckCaughtMon:: ; 3393 ld c, a ld hl, PokedexCaught ld b, CHECK_FLAG jr PokedexFlagAction ; 339b -CheckSeenMon: ; 339b +CheckSeenMon:: ; 339b ld c, a ld hl, PokedexSeen ld b, CHECK_FLAG ; fallthrough ; 33a1 -PokedexFlagAction: ; 33a1 +PokedexFlagAction:: ; 33a1 ld d, 0 ld a, PREDEF_FLAG call Predef |