mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
61fd18e438
*Properly sync video after flush to avoid possible green flash *Moved argument command line also to mem2 to avoid overwrite of it Forwarder V4: *Changed to new app_booter method (see WiiXplorer SVN) *Properly sync video after flush to avoid possible green flash *Centered background image and corrected aspect ratio
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_bin[];
|
|
extern const u32 app_booter_bin_size;
|
|
|
|
extern const u8 background_png[];
|
|
extern const u32 background_png_size;
|
|
|
|
extern const u8 background169_png[];
|
|
extern const u32 background169_png_size;
|
|
|
|
#endif
|