mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
7e0e4cab5c
*Added option for file splitting on install. 2GB, 4GB and on ntfs/ext2/3/4 partitions no splitting at all option. *Fixed the install dir naming patterns option for fat32/ntfs/ext2/3/4 game installs *Changed/Fixed Home Menu exit to loader / shutdown *Added reload of game list on SD button click *Fixed language file loading on startup *Changed browse for theme path to file browser instead of OnScreenKeyboard Several settings were changed in this revision. It is recommended to reset the configs before using this rev. Forwarder Channel Update: *Use of IOS58 and AHBPROT *Complete change of forwarder. Using same as on WiiXplorer now. *Looking for dol in every primary fat/ntfs partition in the known paths (/apps/usbloader_gx/ and /apps/usbloadergx/). (Booting loader from ntfs will be usefull once images and settings can also be stored on ntfs.) Here is a download link for the channel: http://www.mediafire.com/?r11bwt1occlanmk The channel will be uploaded to the download section later when it is thoroughly tested.
21 lines
546 B
C
21 lines
546 B
C
/****************************************************************************
|
|
* filelist.h
|
|
* Contains a list of all of the files in the images, fonts, sounds folders
|
|
***************************************************************************/
|
|
|
|
#ifndef _FILELIST_H_
|
|
#define _FILELIST_H_
|
|
|
|
#include <gccore.h>
|
|
|
|
extern const u8 app_booter_dol[];
|
|
extern const u32 app_booter_dol_size;
|
|
|
|
extern const u8 background_png[];
|
|
extern const u32 background_png_size;
|
|
|
|
extern const u8 background169_png[];
|
|
extern const u32 background169_png_size;
|
|
|
|
#endif
|