mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15: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.
21 lines
504 B
C++
21 lines
504 B
C++
|
|
#ifndef __CHANHANDLE_HPP_
|
|
#define __CHANHANDLE_HPP_
|
|
|
|
typedef struct _dolheader
|
|
{
|
|
u32 section_pos[18];
|
|
u32 section_start[18];
|
|
u32 section_size[18];
|
|
u32 bss_start;
|
|
u32 bss_size;
|
|
u32 entry_point;
|
|
u32 padding[7];
|
|
} ATTRIBUTE_PACKED dolheader;
|
|
|
|
void PatchChannel(u8 vidMode, GXRModeObj *vmode, bool vipatch, bool countryString,
|
|
u8 patchVidModes, int aspectRatio, u8 private_server, bool patchFix480p, u8 bootType);
|
|
u32 LoadChannel(u64 title, bool dol, u32 *IOS);
|
|
|
|
#endif /* __CHANHANDLE_HPP_ */
|