diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-23 14:01:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 14:01:11 -0400 |
commit | d21090cf044c3693f020f9580fa1dbefe3d4556f (patch) | |
tree | 553c15314325bfad9c75bc026121ca26aceb5f9e /src/battle_script_commands.c | |
parent | dbf3de7755136f434a1fc07496d2a685e752ef08 (diff) | |
parent | b80442645dc880216a35a780e5bed232aea1f92a (diff) |
Merge pull request #406 from hjk321/index-graphics
Document, Index, and Prettify Graphics, Part 1 (A-H)
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index f040d9419..ee9251017 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -703,8 +703,9 @@ static const struct WindowTemplate sUnusedWinTemplate = .baseBlock = 0x3F, }; -static const u16 gUnknown_82506D0[] = INCBIN_U16("graphics/battle_interface/unk_battlebox.gbapal"); -static const u32 gUnknown_82506F0[] = INCBIN_U32("graphics/battle_interface/unk_battlebox.4bpp.lz"); +// not used +static const u16 sUnknownBattleboxPal[] = INCBIN_U16("graphics/battle_interface/unk_battlebox.gbapal"); +static const u32 sUnknownBattleboxGfx[] = INCBIN_U32("graphics/battle_interface/unk_battlebox.4bpp.lz"); // not used static const u8 sRubyLevelUpStatBoxStats[] = @@ -5593,8 +5594,8 @@ static void sub_8026480(void) { gBattle_BG2_Y = 0; gBattle_BG2_X = 0x1A0; - LoadPalette(gUnknown_82506D0, 0x60, 0x20); - CopyToWindowPixelBuffer(13, gUnknown_82506F0, 0, 0); + LoadPalette(sUnknownBattleboxPal, 0x60, 0x20); + CopyToWindowPixelBuffer(13, sUnknownBattleboxGfx, 0, 0); PutWindowTilemap(13); CopyWindowToVram(13, COPYWIN_BOTH); PutMonIconOnLvlUpBox(); |