diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-09-30 15:43:44 -0400 |
---|---|---|
committer | GriffinR <griffin.richards@comcast.net> | 2019-09-30 15:43:44 -0400 |
commit | 5325835ee718b4762fc21aa81a481bb63f2dbd29 (patch) | |
tree | 1bf1977f369e740eeda1c7c7cc4c7bf06bb040fc /src/pokedex.c | |
parent | 3d9bad5558c6ef8828be7a50e3e553d55ca877e0 (diff) |
Use STR_CONV constants
Diffstat (limited to 'src/pokedex.c')
-rw-r--r-- | src/pokedex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokedex.c b/src/pokedex.c index c1787ef6a..24ffe65fa 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -3889,7 +3889,7 @@ void sub_80C020C(u32 num, u32 value, u32 c, u32 d) value = NationalToHoennOrder(num); else value = num; - ConvertIntToDecimalStringN(StringCopy(str, gText_UnkCtrlF908Clear01), value, 2, 3); + ConvertIntToDecimalStringN(StringCopy(str, gText_UnkCtrlF908Clear01), value, STR_CONV_MODE_LEADING_ZEROS, 3); sub_80BE8DC(str, 0x60, 0x19); natNum = NationalPokedexNumToSpecies(num); if (natNum) |