diff options
author | Kurausukun <lord.uber1@gmail.com> | 2021-05-04 01:55:16 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2021-05-13 11:26:15 -0500 |
commit | 7740ca13038810421d787a248cf62d307c1ab1ef (patch) | |
tree | 85e70062b4ada2678581c3868565f59095d26eb0 /src/battle_interface.c | |
parent | fa23b196a96e58eaa14d996ac88a3e9b1f274a84 (diff) |
replace raw values with char constants
Diffstat (limited to 'src/battle_interface.c')
-rw-r--r-- | src/battle_interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle_interface.c b/src/battle_interface.c index b309d62b0..ff376f6f1 100644 --- a/src/battle_interface.c +++ b/src/battle_interface.c @@ -1101,9 +1101,9 @@ static void UpdateLvlInHealthbox(u8 healthboxSpriteId, u8 lvl) u8 text[16]; u32 xPos; u8 *objVram; - - text[0] = 0xF9; - text[1] = 5; + + text[0] = CHAR_EXTRA_SYMBOL; + text[1] = CHAR_LV_2; objVram = ConvertIntToDecimalStringN(text + 2, lvl, STR_CONV_MODE_LEFT_ALIGN, 3); xPos = 5 * (3 - (objVram - (text + 2))); |