diff options
author | yenatch <yenatch@gmail.com> | 2013-09-18 21:10:25 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-18 21:10:25 -0400 |
commit | 663c523ac40cb13f53c4939f5a13aecccd0be0f2 (patch) | |
tree | b923a453f61d097128b259972e40c37467b4bda5 | |
parent | 48bab16ea4ef55d39a17ac190524e5e6ba5ce723 (diff) |
fix formatting in player pic asm
-rw-r--r-- | main.asm | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -59326,7 +59326,7 @@ DrawIntroPlayerPic: ; 88874 .GotPic ld hl, VTiles2 ld b, BANK(ChrisPic) - ld c, $31 + ld c, 7 * 7 ; dimensions call Get2bpp ; Draw @@ -59353,15 +59353,17 @@ GetKrisBackpic: ; 88ec9 ; Kris's backpic is uncompressed. ld de, KrisBackpic ld hl, $9310 - ld bc, $2231 + ld bc, BANK(KrisBackpic) << 8 + (7 * 7) ; dimensions call Get2bpp ret ; 88ed6 KrisBackpic: ; 88ed6 +INCBIN "baserom.gbc", $88ed6, $89116 - $88ed6 +; 89116 -INCBIN "baserom.gbc", $88ed6, $89160 - $88ed6 +INCBIN "baserom.gbc", $89116, $89160 - $89116 Function89160: ; 89160 push af |