diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-04-15 14:13:23 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-04-15 14:13:23 -0700 |
commit | ce9c7e3286f26d6fb171d032d53d0a2ab1d5ec2f (patch) | |
tree | a1deebb8c05ab4c47a9126938214eec277c6f570 | |
parent | df17baff9b3a12e46f166b04e1ccbde5d64a51b5 (diff) |
Dump and label CatchBarTiles
-rwxr-xr-x | home.asm | 6 | ||||
-rwxr-xr-x | main.asm | 8 |
2 files changed, 8 insertions, 6 deletions
@@ -5268,8 +5268,10 @@ Data_2894: RGB 27, 10, 10 RGB 20, 04, 04 -Data_2898: - dr $2898, $28a0 +CatchBarTiles: +; The tile ids for the blue CATCH! bar under the wild pokemon + db $80, $AE, $AF, $B0, $B1, $B2, $B3, $80 +CatchBarTilesEnd: CopyHLToDE: ; 0x28a0 ; Places [hl] into [de] @@ -9978,9 +9978,9 @@ StartCatchEmMode: ; 0x1003f ld bc, $0020 call LoadOrCopyVRAMData ld a, $0 - ld hl, Data_2898 + ld hl, CatchBarTiles deCoord 6, 8, vBGMap - ld bc, $0008 + ld bc, (CatchBarTilesEnd - CatchBarTiles) call LoadOrCopyVRAMData .asm_1011d call SetPokemonSeenFlag @@ -11784,9 +11784,9 @@ Func_10d1d: ; 0x10d1d ld bc, $0020 call LoadOrCopyVRAMData ld a, $0 - ld hl, Data_2898 + ld hl, CatchBarTiles deCoord 6, 8, vBGMap - ld bc, $0008 + ld bc, (CatchBarTilesEnd - CatchBarTiles) call LoadOrCopyVRAMData .asm_10e09 ret |