mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
ff94e73be8
- added 'no SSL only' as a private server choice (issue #217). this allows you to patch games on your own with other wifi server url's besides wiimmfi. - added private server as an option for nand wiiware games. - added 480p pixel patch as option for nand wiiware/vc games. seems to only work if apploader is set to ON. loading via main dol is broke for the time being.
26 lines
493 B
C
26 lines
493 B
C
#ifndef _APPLOADER_H_
|
|
#define _APPLOADER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* Prototypes */
|
|
u32 Apploader_Run(u8 vidMode, GXRModeObj *vmode, bool vipatch, bool countryString, u8 patchVidModes, int aspectRatio, u32 returnTo,
|
|
bool patchregion, u8 private_server, bool patchFix480p, u8 bootType);
|
|
|
|
enum
|
|
{
|
|
PRIVSERV_OFF,
|
|
PRIVSERV_NOSSL,
|
|
PRIVSERV_WIIMMFI,
|
|
PRIVSERV_MAX_CHOICE
|
|
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|