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/battle | |
parent | 87f4f4eb44f16cdf23a8cb7a67efd69ad4a34d75 (diff) |
constants for PrintNumber
Diffstat (limited to 'engine/battle')
-rwxr-xr-x | engine/battle/core.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 335108f7..fe7066e2 100755 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -2141,7 +2141,7 @@ DisplayBattleMenu: ; 3ceb3 (f:4eb3) Coorda 13, 16 coord hl, 7, 14 ld de, W_NUMSAFARIBALLS - ld bc, $102 + lb bc, 1, 2 call PrintNumber ld b, $1 ; top menu item X .leftColumn_WaitForInput @@ -2174,7 +2174,7 @@ DisplayBattleMenu: ; 3ceb3 (f:4eb3) Coorda 1, 16 ; clear lower cursor position in left column coord hl, 7, 14 ld de, W_NUMSAFARIBALLS - ld bc, $102 + lb bc, 1, 2 call PrintNumber ld b, $d ; top menu item X .rightColumn_WaitForInput @@ -2951,11 +2951,11 @@ PrintMenuItem: ; 3d4b6 (f:54b6) ld [hl], "/" coord hl, 5, 11 ld de, wcd6d - ld bc, $102 + lb bc, 1, 2 call PrintNumber coord hl, 8, 11 ld de, wd11e - ld bc, $102 + lb bc, 1, 2 call PrintNumber call GetCurrentMove coord hl, 2, 10 |