diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-20 08:53:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 08:53:44 -0500 |
commit | 062cdbe01cbbce5845daba7d1b880c716f3beff8 (patch) | |
tree | 7463417af8ba761ca59d5942bde1861201887a63 /src/money.c | |
parent | a7e6045d71d2d21c4fa5a494d112c6b38226eaec (diff) | |
parent | bd43b905b7ce5489224d3a2144504df6f7687f1f (diff) |
Merge pull request #1599 from GriffinRichards/fix-tilemaps
Break up graphics/interface and graphics/misc
Diffstat (limited to 'src/money.c')
-rw-r--r-- | src/money.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/money.c b/src/money.c index c331462d4..592ce9f75 100644 --- a/src/money.c +++ b/src/money.c @@ -58,14 +58,14 @@ static const struct SpriteTemplate sSpriteTemplate_MoneyLabel = static const struct CompressedSpriteSheet sSpriteSheet_MoneyLabel = { - .data = gMenuMoneyGfx, + .data = gShopMenuMoney_Gfx, .size = 256, .tag = MONEY_LABEL_TAG, }; static const struct CompressedSpritePalette sSpritePalette_MoneyLabel = { - .data = gMenuMoneyPal, + .data = gShopMenu_Pal, .tag = MONEY_LABEL_TAG }; @@ -146,7 +146,7 @@ void PrintMoneyAmount(u8 windowId, u8 x, u8 y, int amount, u8 speed) txtPtr = gStringVar4; while (strLength-- > 0) - *(txtPtr++) = 0x77; + *(txtPtr++) = CHAR_SPACER; StringExpandPlaceholders(txtPtr, gText_PokedollarVar1); AddTextPrinterParameterized(windowId, FONT_NORMAL, gStringVar4, x, y, speed, NULL); |