diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-03-04 18:21:12 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-03-04 18:21:12 -0500 |
commit | 7e78c1171d1206ca2f31cc67c55cc715eeb44ee5 (patch) | |
tree | 259d2a8c49213d54cd9fa9801259e28950700f45 /engine/battle/animations.asm | |
parent | 9523681b8c356cad3607a32893f095334a80fb6e (diff) |
Gen 1's Minimize graphic was not a complete 8x8 tile
Diffstat (limited to 'engine/battle/animations.asm')
-rw-r--r-- | engine/battle/animations.asm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/engine/battle/animations.asm b/engine/battle/animations.asm index 476e937f..8f113adc 100644 --- a/engine/battle/animations.asm +++ b/engine/battle/animations.asm @@ -1694,7 +1694,7 @@ AnimationMinimizeMon: ld bc, 7 * 7 * $10 call FillMemory pop hl - ld de, $194 + ld de, 7 * 3 * $10 + 4 * $10 + 4 add hl, de ld de, MinimizedMonSprite ld c, MinimizedMonSpriteEnd - MinimizedMonSprite @@ -1710,7 +1710,15 @@ AnimationMinimizeMon: jp AnimationShowMonPic 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: AnimationSlideMonDownAndHide: |