diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-26 13:26:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 13:26:12 -0400 |
commit | c0aedf8df400c9a8eea175ed1affb72ee2fc60e6 (patch) | |
tree | 38aed8b61077320ca4ec0ef2433c41249c52fa48 /src/egg_hatch.c | |
parent | f823cd224fcc24c756fc66c229fb4cb24e60638d (diff) | |
parent | 04af378904dc5e7ded00bb8e50c8e6b554c3571b (diff) |
Merge pull request #1410 from GriffinRichards/doc-tradedata
Document trade sequence animation, some trade cleanup
Diffstat (limited to 'src/egg_hatch.c')
-rw-r--r-- | src/egg_hatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egg_hatch.c b/src/egg_hatch.c index 0ae0e1323..042173a4e 100644 --- a/src/egg_hatch.c +++ b/src/egg_hatch.c @@ -54,7 +54,7 @@ struct EggHatchData u8 textColor[3]; }; -extern const u32 gUnknown_08331F60[]; // tilemap gameboy circle +extern const u32 gTradePlatform_Tilemap[]; extern const u8 gText_HatchedFromEgg[]; extern const u8 gText_NicknameHatchPrompt[]; @@ -546,7 +546,7 @@ static void CB2_EggHatch_0(void) SetGpuReg(REG_OFFSET_DISPCNT, DISPCNT_OBJ_ON | DISPCNT_OBJ_1D_MAP); LoadPalette(gTradeGba2_Pal, 0x10, 0xA0); LoadBgTiles(1, gTradeGba_Gfx, 0x1420, 0); - CopyToBgTilemapBuffer(1, gUnknown_08331F60, 0x1000, 0); + CopyToBgTilemapBuffer(1, gTradePlatform_Tilemap, 0x1000, 0); CopyBgTilemapBufferToVram(1); gMain.state++; break; |