Gen 1's Minimize graphic was not a complete 8x8 tile

This commit is contained in:
Rangi 2022-03-04 18:21:12 -05:00
parent 9523681b8c
commit 7e78c1171d
2 changed files with 10 additions and 2 deletions

View file

@ -1694,7 +1694,7 @@ AnimationMinimizeMon:
ld bc, 7 * 7 * $10 ld bc, 7 * 7 * $10
call FillMemory call FillMemory
pop hl pop hl
ld de, $194 ld de, 7 * 3 * $10 + 4 * $10 + 4
add hl, de add hl, de
ld de, MinimizedMonSprite ld de, MinimizedMonSprite
ld c, MinimizedMonSpriteEnd - MinimizedMonSprite ld c, MinimizedMonSpriteEnd - MinimizedMonSprite
@ -1710,7 +1710,15 @@ AnimationMinimizeMon:
jp AnimationShowMonPic jp AnimationShowMonPic
MinimizedMonSprite: MinimizedMonSprite:
INCBIN "gfx/battle/minimize.1bpp" ; 8x5 partial tile graphic
pusho
opt b.X ; . = 0, X = 1
db %...XX...
db %..XXXX..
db %.XXXXXX.
db %..XXXX..
db %..X..X..
popo
MinimizedMonSpriteEnd: MinimizedMonSpriteEnd:
AnimationSlideMonDownAndHide: AnimationSlideMonDownAndHide:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 B