diff options
-rw-r--r-- | data/data_8468C98.s | 3 | ||||
-rw-r--r-- | graphics/text_window/unk_8470B0C.png | bin | 0 -> 219 bytes | |||
-rw-r--r-- | graphics_file_rules.mk | 4 | ||||
-rw-r--r-- | src/text_window_graphics.c | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/data/data_8468C98.s b/data/data_8468C98.s index 629dcaf02..7f84b6829 100644 --- a/data/data_8468C98.s +++ b/data/data_8468C98.s @@ -319,6 +319,3 @@ gUnknown_846FB08:: @ 846FB08 gUnknown_846FB0C:: @ 846FB0C .incbin "baserom.gba", 0x46FB0C, 0x1000 - -gUnknown_8470B0C:: @ 8470B0C - .incbin "baserom.gba", 0x470B0C, 0x260 diff --git a/graphics/text_window/unk_8470B0C.png b/graphics/text_window/unk_8470B0C.png Binary files differnew file mode 100644 index 000000000..a37c7d17c --- /dev/null +++ b/graphics/text_window/unk_8470B0C.png diff --git a/graphics_file_rules.mk b/graphics_file_rules.mk index f0094f070..10695f05a 100644 --- a/graphics_file_rules.mk +++ b/graphics_file_rules.mk @@ -22,6 +22,7 @@ PKNAVOPTIONSGFXDIR := graphics/pokenav/options PSSGFXDIR := graphics/pokemon_storage EVENTOBJGFXDIR := graphics/event_objects MISCGFXDIR := graphics/misc +TEXTWINDOWGFXDIR := graphics/text_window types := normal fight flying poison ground rock bug ghost steel mystery fire water grass electric psychic ice dragon dark contest_types := cool beauty cute smart tough @@ -476,3 +477,6 @@ data/seagallop/water.4bpp: %.4bpp: %.png $(MISCGFXDIR)/unk_846B008.4bpp: %.4bpp: %.png $(GFX) $< $@ -mwidth 4 -mheight 4 + +$(TEXTWINDOWGFXDIR)/unk_8470B0C.4bpp: %.4bpp: %.png + $(GFX) $< $@ -num_tiles 19 diff --git a/src/text_window_graphics.c b/src/text_window_graphics.c index 1133abbdb..347de3d65 100644 --- a/src/text_window_graphics.c +++ b/src/text_window_graphics.c @@ -1,6 +1,8 @@ #include "global.h" #include "text_window_graphics.h" +const u16 gUnknown_8470B0C[] = INCBIN_U16("graphics/text_window/unk_8470B0C.4bpp"); + static const u16 gUnknown_8470D6C[] = INCBIN_U16("graphics/text_window/unk_8470D6C.4bpp"); static const u16 gUnknown_8470E8C[] = INCBIN_U16("graphics/text_window/unk_8470E8C.4bpp"); static const u16 gUnk_Empty_Space_8470FAC[16] = {0}; |