mirror of
https://github.com/wiidev/usbloadergx.git
synced 2025-02-16 19:39:14 +01:00
![dimok321](/assets/img/avatar_default.png)
*fixed Theme Downloader to actually list the themes (wonder why no one reported that its broken) *fixed freeze on 0 games and gameGrid *added a "Sneek Video Patch" mode. According to WiiPower it can come in handy for some games. (Thanks to WiiPower) *made showing categories on game details screen limited by the space available *removed alt dol prompt on "default" setting for d2x users *Added a Block SD Reload option
27 lines
686 B
C
27 lines
686 B
C
#ifndef GAMEPATCHES_H_
|
|
#define GAMEPATCHES_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <gccore.h>
|
|
|
|
void RegisterDOL(u8 *dst, int len);
|
|
void ClearDOLList();
|
|
void gamepatches(u8 videoSelected, u8 languageChoice, u8 patchcountrystring, u8 vipatch, u8 sneekVideoPatch, u8 cheat, u8 fix002, u8 blockiosreloadselect, u8 gameIOS, u64 returnTo);
|
|
bool Anti_002_fix(u8 * Address, int Size);
|
|
bool NSMBPatch();
|
|
bool PoPPatch();
|
|
void VideoModePatcher(u8 * dst, int len, u8 videoSelected);
|
|
void sneek_video_patch(void *addr, u32 len);
|
|
bool PatchReturnTo(void *Address, int Size, u32 id);
|
|
int PatchNewReturnTo(u64 title);
|
|
bool BlockIOSReload(u8 gameIOS);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|