diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-11-03 20:17:04 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-11-03 20:17:04 -0500 |
| commit | 4d32035d4f68157e11c5eab2311ab760eb481339 (patch) | |
| tree | 10738f3481638317b09a36f0862c599a77fdeeba /engine/pokemon | |
| parent | 0c7b309f7f275f7cfee99bddea8b645c4c8f5f7f (diff) | |
Bit 6 of PrintNum left-aligns numbers
Diffstat (limited to 'engine/pokemon')
| -rw-r--r-- | engine/pokemon/party_menu.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/pokemon/party_menu.asm b/engine/pokemon/party_menu.asm index 49c2c4713..12036497d 100644 --- a/engine/pokemon/party_menu.asm +++ b/engine/pokemon/party_menu.asm @@ -246,10 +246,10 @@ PlacePartyMonLevel: jr nc, .ThreeDigits ld a, "<LV>" ld [hli], a - lb bc, PRINTNUM_RIGHTALIGN | 1, 2 + lb bc, PRINTNUM_LEFTALIGN | 1, 2 ; jr .okay .ThreeDigits: - lb bc, PRINTNUM_RIGHTALIGN | 1, 3 + lb bc, PRINTNUM_LEFTALIGN | 1, 3 ; .okay call PrintNum |
