diff options
| author | Daniel Harding <corrnondacqb@yahoo.com> | 2015-08-05 09:30:49 -0500 |
|---|---|---|
| committer | Daniel Harding <corrnondacqb@yahoo.com> | 2015-08-05 09:30:49 -0500 |
| commit | 1b0404d0dc1962ae9ad8e25ac4aa598e1b7e62ae (patch) | |
| tree | c6ee60528141a29834d90269b379558db5bd4849 /engine/trade2.asm | |
| parent | fix tmlearn (diff) | |
| parent | constants for PrintNumber (diff) | |
| download | pokeyellow-1b0404d0dc1962ae9ad8e25ac4aa598e1b7e62ae.tar.gz pokeyellow-1b0404d0dc1962ae9ad8e25ac4aa598e1b7e62ae.tar.xz pokeyellow-1b0404d0dc1962ae9ad8e25ac4aa598e1b7e62ae.zip | |
Merge pull request #111 from YamaArashi/master
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) |
