Enabled the RTC and rom mirroring by default.
This commit is contained in:
parent
88286e8578
commit
b99b1135c8
|
@ -31,7 +31,7 @@ int layerEnable = 0xff00;
|
||||||
bool speedHack = false;
|
bool speedHack = false;
|
||||||
int cpuSaveType = 0;
|
int cpuSaveType = 0;
|
||||||
bool cheatsEnabled = true;
|
bool cheatsEnabled = true;
|
||||||
bool mirroringEnable = false;
|
bool mirroringEnable = true;
|
||||||
bool skipSaveGameBattery = false;
|
bool skipSaveGameBattery = false;
|
||||||
bool skipSaveGameCheats = false;
|
bool skipSaveGameCheats = false;
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ typedef struct {
|
||||||
} RTCCLOCKDATA;
|
} RTCCLOCKDATA;
|
||||||
|
|
||||||
static RTCCLOCKDATA rtcClockData;
|
static RTCCLOCKDATA rtcClockData;
|
||||||
static bool rtcEnabled = false;
|
static bool rtcEnabled = true;
|
||||||
|
|
||||||
void rtcEnable(bool e)
|
void rtcEnable(bool e)
|
||||||
{
|
{
|
||||||
|
|
|
@ -544,7 +544,7 @@ bool MainWnd::FileRun()
|
||||||
"rtcEnabled",
|
"rtcEnabled",
|
||||||
-1,
|
-1,
|
||||||
tempName);
|
tempName);
|
||||||
if(i != (UINT)-1)
|
|
||||||
rtcEnable(i == 0 ? false : true);
|
rtcEnable(i == 0 ? false : true);
|
||||||
|
|
||||||
i = GetPrivateProfileInt(buffer,
|
i = GetPrivateProfileInt(buffer,
|
||||||
|
@ -564,7 +564,7 @@ bool MainWnd::FileRun()
|
||||||
"mirroringEnabled",
|
"mirroringEnabled",
|
||||||
-1,
|
-1,
|
||||||
tempName);
|
tempName);
|
||||||
if(i != (UINT)-1)
|
|
||||||
doMirroring(i == 0 ? false : true);
|
doMirroring(i == 0 ? false : true);
|
||||||
|
|
||||||
theApp.emulator = GBASystem;
|
theApp.emulator = GBASystem;
|
||||||
|
|
Loading…
Reference in New Issue