summaryrefslogtreecommitdiff
path: root/src/shop.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/shop.c
parent3d9bad5558c6ef8828be7a50e3e553d55ca877e0 (diff)
Use STR_CONV constants
Diffstat (limited to 'src/shop.c')
-rwxr-xr-xsrc/shop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shop.c b/src/shop.c
index bf15568fb..aa3b44715 100755
--- a/src/shop.c
+++ b/src/shop.c
@@ -1147,7 +1147,7 @@ static void BuyMenuPrintItemQuantityAndPrice(u8 taskId)
FillWindowPixelBuffer(4, PIXEL_FILL(1));
PrintMoneyAmount(4, 38, 1, gShopDataPtr->totalCost, TEXT_SPEED_FF);
- ConvertIntToDecimalStringN(gStringVar1, tItemCount, 2, 2);
+ ConvertIntToDecimalStringN(gStringVar1, tItemCount, STR_CONV_MODE_LEADING_ZEROS, 2);
StringExpandPlaceholders(gStringVar4, gText_xVar1);
BuyMenuPrint(4, gStringVar4, 0, 1, 0, 0);
}