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/pokemon_size_record.c | |
parent | 3d9bad5558c6ef8828be7a50e3e553d55ca877e0 (diff) |
Use STR_CONV constants
Diffstat (limited to 'src/pokemon_size_record.c')
-rw-r--r-- | src/pokemon_size_record.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_size_record.c b/src/pokemon_size_record.c index f63e1ccba..914d68925 100644 --- a/src/pokemon_size_record.c +++ b/src/pokemon_size_record.c @@ -100,9 +100,9 @@ static void FormatMonSizeRecord(u8 *string, u32 size) size = (double)(size * 10) / (CM_PER_INCH * 10); #endif - string = ConvertIntToDecimalStringN(string, size / 10, 0, 8); + string = ConvertIntToDecimalStringN(string, size / 10, STR_CONV_MODE_LEFT_ALIGN, 8); string = StringAppend(string, gText_DecimalPoint); - ConvertIntToDecimalStringN(string, size % 10, 0, 1); + ConvertIntToDecimalStringN(string, size % 10, STR_CONV_MODE_LEFT_ALIGN, 1); } static u8 CompareMonSize(u16 species, u16 *sizeRecord) |