diff --git a/graphics_file_rules.mk b/graphics_file_rules.mk index 1ee7a9b193..8cefa78db6 100644 --- a/graphics_file_rules.mk +++ b/graphics_file_rules.mk @@ -486,6 +486,12 @@ $(BATTRANSGFXDIR)/vs_frame.4bpp: %.4bpp: %.png graphics/party_menu/bg.4bpp: %.4bpp: %.png $(GFX) $< $@ -num_tiles 62 -Wnum_tiles +graphics/party_menu/french/bg.4bpp: %.4bpp: %.png + $(GFX) $< $@ -num_tiles 62 -Wnum_tiles + +graphics/party_menu/italian/bg.4bpp: %.4bpp: %.png + $(GFX) $< $@ -num_tiles 62 -Wnum_tiles + graphics/bag/menu.4bpp: %.4bpp: %.png $(GFX) $< $@ -num_tiles 53 -Wnum_tiles diff --git a/src/data/graphics/slot_machine.h b/src/data/graphics/slot_machine.h index 9cb2bd098a..a76b035025 100644 --- a/src/data/graphics/slot_machine.h +++ b/src/data/graphics/slot_machine.h @@ -1,17 +1,15 @@ -#if ENGLISH const u16 gSlotMachineMenu_Pal[] = INCBIN_U16("graphics/slot_machine/menu.gbapal"); +#if ENGLISH const u32 gSlotMachineMenu_Gfx[] = INCBIN_U32("graphics/slot_machine/menu.4bpp.lz"); const u16 gSlotMachineMenu_Tilemap[] = INCBIN_U16("graphics/slot_machine/menu.bin"); const u16 gSlotMachineInfoBox_Tilemap[] = INCBIN_U16("graphics/slot_machine/info_box.bin"); #elif FRENCH -const u16 gSlotMachineMenu_Pal[] = INCBIN_U16("graphics/slot_machine/fr/menu.gbapal"); const u32 gSlotMachineMenu_Gfx[] = INCBIN_U32("graphics/slot_machine/fr/menu.4bpp.lz"); const u16 gSlotMachineMenu_Tilemap[] = INCBIN_U16("graphics/slot_machine/menu.bin"); const u16 gSlotMachineInfoBox_Tilemap[] = INCBIN_U16("graphics/slot_machine/fr/info_box.bin"); #elif ITALIAN -const u16 gSlotMachineMenu_Pal[] = INCBIN_U16("graphics/slot_machine/it/menu.gbapal"); const u32 gSlotMachineMenu_Gfx[] = INCBIN_U32("graphics/slot_machine/it/menu.4bpp.lz"); const u16 gSlotMachineMenu_Tilemap[] = INCBIN_U16("graphics/slot_machine/menu.bin");