summaryrefslogtreecommitdiff
path: root/src/shop.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2022-01-11 11:59:24 -0500
committerGriffinR <griffin.g.richards@gmail.com>2022-01-11 13:53:23 -0500
commit694aa3c65dd4d926616dcab414e8c1647f357c54 (patch)
treed2b8fe91f94123ea3ef4f5f0e1435e40814d71fe /src/shop.c
parentd782d3544dd3c43ac2034df4a9a445d7ccda1982 (diff)
Move balls, shop, link, map popups, and bag out of interface
Diffstat (limited to 'src/shop.c')
-rwxr-xr-xsrc/shop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shop.c b/src/shop.c
index f41ae315f..b65cace09 100755
--- a/src/shop.c
+++ b/src/shop.c
@@ -674,9 +674,9 @@ static void BuyMenuInitBgs(void)
static void BuyMenuDecompressBgGraphics(void)
{
- DecompressAndCopyTileDataToVram(1, gBuyMenuFrame_Gfx, 0x3A0, 0x3E3, 0);
- LZDecompressWram(gBuyMenuFrame_Tilemap, sShopData->tilemapBuffers[0]);
- LoadCompressedPalette(gMenuMoneyPal, 0xC0, 0x20);
+ DecompressAndCopyTileDataToVram(1, gShopMenu_Gfx, 0x3A0, 0x3E3, 0);
+ LZDecompressWram(gShopMenu_Tilemap, sShopData->tilemapBuffers[0]);
+ LoadCompressedPalette(gShopMenu_Pal, 0xC0, 0x20);
}
static void BuyMenuInitWindows(void)