mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 10:05:05 +01:00
33ce3e48ab
*Homebrew boot changed a bit (cleanup) *A lot more stuff i can't remember anymore
22 lines
438 B
C
22 lines
438 B
C
#ifndef GAMEPATCHES_H_
|
|
#define GAMEPATCHES_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <gccore.h>
|
|
|
|
bool Anti_002_fix(u8 * Address, int Size);
|
|
bool NSMBPatch(u8 * Address, int Size);
|
|
bool PoPPatch();
|
|
bool Search_and_patch_Video_Modes(u8 * Address, u32 Size, GXRModeObj* Table[]);
|
|
void VideoModePatcher(u8 * dst, int len, u8 videoSelected);
|
|
bool PatchReturnTo(void *Address, int Size, u32 id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|