summaryrefslogtreecommitdiff
path: root/engine/print_party.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2018-01-13 15:22:16 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2018-01-13 15:22:16 -0500
commit0197e6f23c0db6baf11aa1e610521f78b6352605 (patch)
tree33ebeff742a50c9a3cd5a83e85fda4164ef0906e /engine/print_party.asm
parent3db107b72159e991a08248be7e32d74cfb723289 (diff)
Don't split stats gfx in three
Diffstat (limited to 'engine/print_party.asm')
-rwxr-xr-xengine/print_party.asm11
1 files changed, 5 insertions, 6 deletions
diff --git a/engine/print_party.asm b/engine/print_party.asm
index ce624b013..819f38759 100755
--- a/engine/print_party.asm
+++ b/engine/print_party.asm
@@ -1,5 +1,4 @@
-PRINTPARTY_HP EQUS "\"◀\"" ; $71
-PRINTPARTY_SHINY EQUS "\"<ENEMY>\"" ; $3f
+PRINTPARTY_HP EQUS "\"◀\"" ; $71
PrintPage1: ; 1dc1b0
hlcoord 0, 0
@@ -153,9 +152,9 @@ PrintPartyMonPage1: ; 1dc381
lb bc, BANK(GBPrinterLvIcon), 1
call Request1bpp
- ld de, ShinyIconGFX
- ld hl, vTiles2 tile PRINTPARTY_SHINY
- lb bc, BANK(ShinyIconGFX), 1
+ ld de, StatsScreenPageTilesGFX + 14 tiles ; shiny icon
+ ld hl, vTiles2 tile "<SHINY>"
+ lb bc, BANK(StatsScreenPageTilesGFX), 1
call Get2bpp
xor a
@@ -333,7 +332,7 @@ Function1dc52c: ; 1dc52c
farcall CheckShininess
ret nc
hlcoord 18, 2
- ld [hl], PRINTPARTY_SHINY
+ ld [hl], "<SHINY>"
ret
; 1dc550