summaryrefslogtreecommitdiff
path: root/src/field/money.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/field/money.c')
-rw-r--r--src/field/money.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/field/money.c b/src/field/money.c
index 6cd73f600..3b7268dbc 100644
--- a/src/field/money.c
+++ b/src/field/money.c
@@ -100,6 +100,8 @@ void GetMoneyAmountText(u8 *buffer, u32 amount, u8 arg2)
width = 7;
else if (amount > 99999)
width = 6;
+ // A special sprite is used for 10000 in the decoration
+ // shop, so be sure to account for this.
else if (amount > 10000)
width = 5;
else if (amount > 999)