2009-03-27 05:26:20 +01:00
|
|
|
/****************************************************************************
|
2009-07-22 04:05:49 +02:00
|
|
|
* FCE Ultra
|
2009-03-28 18:23:08 +01:00
|
|
|
* Nintendo Wii/Gamecube Port
|
2009-03-27 05:26:20 +01:00
|
|
|
*
|
2022-01-09 17:40:41 +01:00
|
|
|
* Tantric 2009-2022
|
2009-03-27 05:26:20 +01:00
|
|
|
*
|
2009-04-05 05:11:38 +02:00
|
|
|
* filelist.h
|
2009-03-27 05:26:20 +01:00
|
|
|
*
|
2009-04-05 05:11:38 +02:00
|
|
|
* Contains a list of all of the files stored in the images/, fonts/, and
|
|
|
|
* sounds/ folders
|
2009-03-27 05:26:20 +01:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _FILELIST_H_
|
|
|
|
#define _FILELIST_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
|
2010-01-25 09:23:03 +01:00
|
|
|
// Fonts
|
2020-06-28 23:12:22 +02:00
|
|
|
#include "font_ttf.h"
|
2009-03-27 05:26:20 +01:00
|
|
|
|
2010-01-25 09:23:03 +01:00
|
|
|
// Languages
|
2020-06-28 23:12:22 +02:00
|
|
|
#include "jp_lang.h"
|
|
|
|
#include "en_lang.h"
|
|
|
|
#include "de_lang.h"
|
|
|
|
#include "fr_lang.h"
|
|
|
|
#include "es_lang.h"
|
|
|
|
#include "it_lang.h"
|
|
|
|
#include "nl_lang.h"
|
|
|
|
#include "zh_lang.h"
|
|
|
|
#include "ko_lang.h"
|
|
|
|
#include "pt_lang.h"
|
|
|
|
#include "pt_br_lang.h"
|
|
|
|
#include "ca_lang.h"
|
|
|
|
#include "tr_lang.h"
|
2010-01-25 09:23:03 +01:00
|
|
|
|
|
|
|
// Sounds
|
2020-06-28 23:12:22 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
// background music is Wii-only
|
|
|
|
#include "bg_music_ogg.h"
|
|
|
|
#include "enter_ogg.h"
|
|
|
|
#include "exit_ogg.h"
|
|
|
|
#endif
|
|
|
|
#include "button_over_pcm.h"
|
|
|
|
#include "button_click_pcm.h"
|
2009-04-05 05:11:38 +02:00
|
|
|
|
2010-01-25 09:23:03 +01:00
|
|
|
// Graphics
|
2020-06-28 23:12:22 +02:00
|
|
|
#include "logo_png.h"
|
|
|
|
#include "logo_over_png.h"
|
|
|
|
#include "bg_top_png.h"
|
|
|
|
#include "bg_bottom_png.h"
|
|
|
|
#include "icon_settings_png.h"
|
|
|
|
#include "icon_home_png.h"
|
|
|
|
#include "icon_game_settings_png.h"
|
|
|
|
#include "icon_game_cheats_png.h"
|
|
|
|
#include "icon_game_controllers_png.h"
|
|
|
|
#include "icon_game_load_png.h"
|
|
|
|
#include "icon_game_save_png.h"
|
|
|
|
#include "icon_game_delete_png.h"
|
|
|
|
#include "icon_game_reset_png.h"
|
|
|
|
#include "icon_settings_wiimote_png.h"
|
|
|
|
#include "icon_settings_classic_png.h"
|
|
|
|
#include "icon_settings_gamecube_png.h"
|
|
|
|
#include "icon_settings_nunchuk_png.h"
|
|
|
|
#include "icon_settings_wiiupro_png.h"
|
|
|
|
#include "icon_settings_drc_png.h"
|
|
|
|
#include "icon_settings_nescontroller_png.h"
|
|
|
|
#include "icon_settings_zapper_png.h"
|
|
|
|
#include "icon_settings_file_png.h"
|
|
|
|
#include "icon_settings_mappings_png.h"
|
|
|
|
#include "icon_settings_menu_png.h"
|
|
|
|
#include "icon_settings_network_png.h"
|
|
|
|
#include "icon_settings_video_png.h"
|
|
|
|
#include "icon_settings_screenshot_png.h"
|
|
|
|
#include "button_png.h"
|
|
|
|
#include "button_over_png.h"
|
|
|
|
#include "button_prompt_png.h"
|
|
|
|
#include "button_prompt_over_png.h"
|
|
|
|
#include "button_long_png.h"
|
|
|
|
#include "button_long_over_png.h"
|
|
|
|
#include "button_short_png.h"
|
|
|
|
#include "button_short_over_png.h"
|
|
|
|
#include "button_small_png.h"
|
|
|
|
#include "button_small_over_png.h"
|
|
|
|
#include "button_large_png.h"
|
|
|
|
#include "button_large_over_png.h"
|
|
|
|
#include "button_arrow_left_png.h"
|
|
|
|
#include "button_arrow_right_png.h"
|
|
|
|
#include "button_arrow_up_png.h"
|
|
|
|
#include "button_arrow_down_png.h"
|
|
|
|
#include "button_arrow_left_over_png.h"
|
|
|
|
#include "button_arrow_right_over_png.h"
|
|
|
|
#include "button_arrow_up_over_png.h"
|
|
|
|
#include "button_arrow_down_over_png.h"
|
|
|
|
#include "button_gamesave_png.h"
|
|
|
|
#include "button_gamesave_over_png.h"
|
|
|
|
#include "button_gamesave_blank_png.h"
|
|
|
|
#include "screen_position_png.h"
|
|
|
|
#include "dialogue_box_png.h"
|
|
|
|
#include "credits_box_png.h"
|
|
|
|
#include "progressbar_png.h"
|
|
|
|
#include "progressbar_empty_png.h"
|
|
|
|
#include "progressbar_outline_png.h"
|
|
|
|
#include "throbber_png.h"
|
|
|
|
#include "icon_folder_png.h"
|
|
|
|
#include "icon_sd_png.h"
|
|
|
|
#include "icon_usb_png.h"
|
|
|
|
#include "icon_dvd_png.h"
|
|
|
|
#include "icon_smb_png.h"
|
|
|
|
#include "battery_png.h"
|
|
|
|
#include "battery_red_png.h"
|
|
|
|
#include "battery_bar_png.h"
|
|
|
|
#include "bg_options_png.h"
|
|
|
|
#include "bg_options_entry_png.h"
|
|
|
|
#include "bg_game_selection_png.h"
|
|
|
|
#include "bg_game_selection_entry_png.h"
|
|
|
|
#include "bg_preview_png.h"
|
|
|
|
#include "scrollbar_png.h"
|
|
|
|
#include "scrollbar_arrowup_png.h"
|
|
|
|
#include "scrollbar_arrowup_over_png.h"
|
|
|
|
#include "scrollbar_arrowdown_png.h"
|
|
|
|
#include "scrollbar_arrowdown_over_png.h"
|
|
|
|
#include "scrollbar_box_png.h"
|
|
|
|
#include "scrollbar_box_over_png.h"
|
|
|
|
#include "keyboard_textbox_png.h"
|
|
|
|
#include "keyboard_key_png.h"
|
|
|
|
#include "keyboard_key_over_png.h"
|
|
|
|
#include "keyboard_mediumkey_png.h"
|
|
|
|
#include "keyboard_mediumkey_over_png.h"
|
|
|
|
#include "keyboard_largekey_png.h"
|
|
|
|
#include "keyboard_largekey_over_png.h"
|
|
|
|
#include "player1_point_png.h"
|
|
|
|
#include "player2_point_png.h"
|
|
|
|
#include "player3_point_png.h"
|
|
|
|
#include "player4_point_png.h"
|
|
|
|
#include "player1_grab_png.h"
|
|
|
|
#include "player2_grab_png.h"
|
|
|
|
#include "player3_grab_png.h"
|
|
|
|
#include "player4_grab_png.h"
|
2009-03-27 05:26:20 +01:00
|
|
|
|
2018-08-01 20:43:16 +02:00
|
|
|
#endif
|