summaryrefslogtreecommitdiff
path: root/src/item_use.c
diff options
context:
space:
mode:
authorGriffinR <griffin.richards@comcast.net>2019-09-30 15:43:44 -0400
committerGriffinR <griffin.richards@comcast.net>2019-09-30 15:43:44 -0400
commit5325835ee718b4762fc21aa81a481bb63f2dbd29 (patch)
tree1bf1977f369e740eeda1c7c7cc4c7bf06bb040fc /src/item_use.c
parent3d9bad5558c6ef8828be7a50e3e553d55ca877e0 (diff)
Use STR_CONV constants
Diffstat (limited to 'src/item_use.c')
-rwxr-xr-xsrc/item_use.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/item_use.c b/src/item_use.c
index 2f4374423..46f8cdf4a 100755
--- a/src/item_use.c
+++ b/src/item_use.c
@@ -623,7 +623,7 @@ void sub_80FDC00(u8 taskId)
void ItemUseOutOfBattle_CoinCase(u8 taskId)
{
- ConvertIntToDecimalStringN(gStringVar1, GetCoins(), 0, 4);
+ ConvertIntToDecimalStringN(gStringVar1, GetCoins(), STR_CONV_MODE_LEFT_ALIGN, 4);
StringExpandPlaceholders(gStringVar4, gText_CoinCase);
if (!gTasks[taskId].data[3])
@@ -638,7 +638,7 @@ void ItemUseOutOfBattle_CoinCase(u8 taskId)
void ItemUseOutOfBattle_PowderJar(u8 taskId)
{
- ConvertIntToDecimalStringN(gStringVar1, GetBerryPowder(), 0, 5);
+ ConvertIntToDecimalStringN(gStringVar1, GetBerryPowder(), STR_CONV_MODE_LEFT_ALIGN, 5);
StringExpandPlaceholders(gStringVar4, gText_PowderQty);
if (!gTasks[taskId].data[3])