mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
6723f00181
-if a IOS is found which got the AHBPROT patched out, wiiflow will run on it (for example if you boot wiiflow via HBC, it will boot with IOS58 instead of 249) -on game boot or on entering emu nand, wiiflow automatically reloads IOS if necessary -added check to only reload IOS if its really a different one -removed SD card gecko log buffer allocation, using some buffer in dol directly (should allow longer logging, untested) -set wiiflow optimize level back to -O2
24 lines
309 B
C
24 lines
309 B
C
|
|
#ifndef _GECKO_H_
|
|
#define _GECKO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <gccore.h>
|
|
|
|
extern bool bufferMessages;
|
|
extern bool WriteToSD;
|
|
|
|
//use this just like printf();
|
|
void gprintf(const char *format, ...);
|
|
void ghexdump(void *d, int len);
|
|
bool InitGecko();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|