summaryrefslogtreecommitdiff
path: root/src/trade_scene.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-02-22 11:08:23 -0500
committerGriffinR <griffin.g.richards@gmail.com>2020-02-22 11:49:09 -0500
commitf66d0dfce3e8642aa08838e843cb4846e9268e71 (patch)
treec77b313880d404586b1e2808275c8a8999c49287 /src/trade_scene.c
parente194cf83d257796591e6a7a2cb88e208ac7de968 (diff)
Move graphics.s through pokemon to src
Diffstat (limited to 'src/trade_scene.c')
-rw-r--r--src/trade_scene.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trade_scene.c b/src/trade_scene.c
index bb441f523..9f0b83ec9 100644
--- a/src/trade_scene.c
+++ b/src/trade_scene.c
@@ -946,13 +946,13 @@ static void TradeAnimInit_LoadGfx(void)
DeactivateAllTextPrinters();
// Doing the graphics load...
DecompressAndLoadBgGfxUsingHeap(0, gBattleTextboxTiles, 0, 0, 0);
- LZDecompressWram(gFile_graphics_interface_menu_map_tilemap, gDecompressionBuffer);
+ LZDecompressWram(gBattleTextboxTilemap, gDecompressionBuffer);
CopyToBgTilemapBuffer(0, gDecompressionBuffer, BG_SCREEN_SIZE, 0);
LoadCompressedPalette(gBattleTextboxPalette, 0x000, 0x20);
InitWindows(gUnknown_826D1BC);
// ... and doing the same load again
DecompressAndLoadBgGfxUsingHeap(0, gBattleTextboxTiles, 0, 0, 0);
- LZDecompressWram(gFile_graphics_interface_menu_map_tilemap, gDecompressionBuffer);
+ LZDecompressWram(gBattleTextboxTilemap, gDecompressionBuffer);
CopyToBgTilemapBuffer(0, gDecompressionBuffer, BG_SCREEN_SIZE, 0);
LoadCompressedPalette(gBattleTextboxPalette, 0x000, 0x20);
}