diff options
| author | YamaArashi <shadow962@live.com> | 2015-07-27 18:48:44 -0700 |
|---|---|---|
| committer | YamaArashi <shadow962@live.com> | 2015-07-29 12:06:54 -0700 |
| commit | 56d75db28ad827d514f3c2c52da0fe4ba2759610 (patch) | |
| tree | c6ee60528141a29834d90269b379558db5bd4849 /engine/trade2.asm | |
| parent | fix tmlearn (diff) | |
| download | pokeyellow-56d75db28ad827d514f3c2c52da0fe4ba2759610.tar.gz pokeyellow-56d75db28ad827d514f3c2c52da0fe4ba2759610.tar.xz pokeyellow-56d75db28ad827d514f3c2c52da0fe4ba2759610.zip | |
constants for PrintNumber
Diffstat (limited to 'engine/trade2.asm')
| -rwxr-xr-x | engine/trade2.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/trade2.asm b/engine/trade2.asm index d7a16716..10bef792 100755 --- a/engine/trade2.asm +++ b/engine/trade2.asm @@ -7,7 +7,7 @@ Trade_PrintPlayerMonInfoText: ; 42769 (10:6769) predef IndexToPokedex coord hl, 9, 0 ld de,wd11e - ld bc,$8103 + lb bc, LEADING_ZEROES | 1, 3 call PrintNumber coord hl, 5, 2 ld de,wcf4b @@ -17,7 +17,7 @@ Trade_PrintPlayerMonInfoText: ; 42769 (10:6769) call PlaceString coord hl, 8, 6 ld de,wTradedPlayerMonOTID - ld bc,$8205 + lb bc, LEADING_ZEROES | 2, 5 jp PrintNumber Trade_PrintEnemyMonInfoText: ; 427a7 (10:67a7) @@ -29,7 +29,7 @@ Trade_PrintEnemyMonInfoText: ; 427a7 (10:67a7) predef IndexToPokedex coord hl, 9, 10 ld de,wd11e - ld bc,$8103 + lb bc, LEADING_ZEROES | 1, 3 call PrintNumber coord hl, 5, 12 ld de,wcd6d @@ -39,7 +39,7 @@ Trade_PrintEnemyMonInfoText: ; 427a7 (10:67a7) call PlaceString coord hl, 8, 16 ld de,wTradedEnemyMonOTID - ld bc,$8205 + lb bc, LEADING_ZEROES | 2, 5 jp PrintNumber Trade_MonInfoText: ; 427e5 (10:67e5) |
