More french-matching fixes

This commit is contained in:
Eduardo Quezada
2024-06-29 19:46:20 -04:00
parent 6a51ef75fc
commit f2f072cc0a
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -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");