diff options
author | Marcus Huderle <huderlem@gmail.com> | 2013-12-16 17:17:44 -0600 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2013-12-16 17:17:44 -0600 |
commit | 8bf6a8a29cf7e869e6430b35bbb03d7a79ed0620 (patch) | |
tree | e82fbbb54a1d48b9a1cb4b6cf2a1264f38543e58 /main.asm | |
parent | 3a97901bcd2b5a7fa324364b053db5b9c96d7a46 (diff) |
INCBIN for enemy mon's battle HUD tiles.
Diffstat (limited to 'main.asm')
-rwxr-xr-x | main.asm | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -57968,7 +57968,7 @@ PlayerBattleHUDGraphicsTiles: ; 3a916 (e:6916) db $6F ; lower-left triangle tile of the HUD Func_3a919: ; 3a919 (e:6919) - ld hl, Unknown_3a92d ; $692d + ld hl, EnemyBattleHUDGraphicsTiles ; $692d ld de, $cd3f ld bc, $3 call CopyData @@ -57977,8 +57977,11 @@ Func_3a919: ; 3a919 (e:6919) ld de, $1 jr Func_3a930 -Unknown_3a92d: ; 3a92d (e:692d) -INCBIN "baserom.gbc",$3a92d,$3a930 - $3a92d +EnemyBattleHUDGraphicsTiles: ; 3a92d (e:692d) +; The tile numbers for specific parts of the battle display for the enemy + db $73 ; unused ($73 is hardcoded in the routine that uses these bytes) + db $74 ; lower-left corner tile of the HUD + db $78 ; lower-right triangle tile of the HUD Func_3a930: ; 3a930 (e:6930) ld [hl], $73 |