diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-11-25 15:58:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-25 15:58:37 -0600 |
commit | 19e235867a9af6159e375154135b6c09bf3d9ba9 (patch) | |
tree | fac44a82a2db04b8a2f80fed1d9455281eb4c439 /src/graphics.c | |
parent | 65c4d49859971d14dc9c43b9444704acf188d408 (diff) | |
parent | 3b501cb4701cebdeaca3df9ed2b9d6833c59a4fc (diff) |
Merge pull request #395 from Slawter666/battle-ui-doc
Document some battle ui
Diffstat (limited to 'src/graphics.c')
-rw-r--r-- | src/graphics.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphics.c b/src/graphics.c index 7c28aa7b6..2a21b610a 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1,8 +1,8 @@ #include "global.h" -const u32 gBattleTextboxTiles[] = INCBIN_U32("graphics/interface/menu.4bpp.lz"); -const u32 gBattleTextboxPalette[] = INCBIN_U32("graphics/interface/menu.gbapal.lz"); -const u32 gBattleTextboxTilemap[] = INCBIN_U32("graphics/interface/menu_map.bin.lz"); +const u32 gBattleTextboxTiles[] = INCBIN_U32("graphics/battle_interface/textbox.4bpp.lz"); +const u32 gBattleTextboxPalette[] = INCBIN_U32("graphics/battle_interface/textbox.gbapal.lz"); +const u32 gBattleTextboxTilemap[] = INCBIN_U32("graphics/battle_interface/textbox_map.bin.lz"); const u32 gMonStillFrontPic_CircledQuestionMark[] = INCBIN_U32("graphics/pokemon/front_pics/circled_question_mark_still_front_pic.4bpp.lz"); const u32 gMonBackPic_CircledQuestionMark[] = INCBIN_U32("graphics/pokemon/back_pics/circled_question_mark_back_pic.4bpp.lz"); |