summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-18 21:10:25 -0400
committeryenatch <yenatch@gmail.com>2013-09-18 21:10:25 -0400
commit663c523ac40cb13f53c4939f5a13aecccd0be0f2 (patch)
treeb923a453f61d097128b259972e40c37467b4bda5
parent48bab16ea4ef55d39a17ac190524e5e6ba5ce723 (diff)
fix formatting in player pic asm
-rw-r--r--main.asm8
1 files changed, 5 insertions, 3 deletions
diff --git a/main.asm b/main.asm
index 30de1692e..e406ef082 100644
--- a/main.asm
+++ b/main.asm
@@ -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