diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2019-12-11 19:51:51 -0500 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2019-12-11 19:51:51 -0500 |
commit | af1c24b751a12b5c5d283e13326df3a997ef27dd (patch) | |
tree | c85749e46d0f0dba95483ee16f264652c9233c1f /src/money.c | |
parent | 0d586d304dbae11eeb0809ef7a06e2d23db5010c (diff) | |
parent | f12824e3b1643f86599e2c03c96b752a87a73746 (diff) |
Merge branch 'master' of github.com:pret/pokefirered into pokedex_screen
Diffstat (limited to 'src/money.c')
-rw-r--r-- | src/money.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/money.c b/src/money.c index 39e5aaa32..323b2e5f6 100644 --- a/src/money.c +++ b/src/money.c @@ -4,9 +4,7 @@ #include "string_util.h" #include "menu.h" #include "text_window.h" - -extern const u8 gText_PokedollarVar1[]; -extern const u8 gUnknown_8419CE7[]; +#include "strings.h" #define MAX_MONEY 999999 @@ -110,7 +108,7 @@ void PrintMoneyAmount(u8 windowId, u8 x, u8 y, int amount, u8 speed) void PrintMoneyAmountInMoneyBoxWithBorder(u8 windowId, u16 tileStart, u8 pallete, int amount) { DrawStdFrameWithCustomTileAndPalette(windowId, FALSE, tileStart, pallete); - AddTextPrinterParameterized(windowId, 2, gUnknown_8419CE7, 0, 0, 0xFF, 0); + AddTextPrinterParameterized(windowId, 2, gText_TrainerCardMoney, 0, 0, 0xFF, 0); PrintMoneyAmountInMoneyBox(windowId, amount, 0); } |