Enabled the RTC and rom mirroring by default.

This commit is contained in:
skidau 2015-04-08 05:05:12 +00:00
parent 88286e8578
commit b99b1135c8
3 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@ int layerEnable = 0xff00;
bool speedHack = false;
int cpuSaveType = 0;
bool cheatsEnabled = true;
bool mirroringEnable = false;
bool mirroringEnable = true;
bool skipSaveGameBattery = false;
bool skipSaveGameCheats = false;

View File

@ -33,7 +33,7 @@ typedef struct {
} RTCCLOCKDATA;
static RTCCLOCKDATA rtcClockData;
static bool rtcEnabled = false;
static bool rtcEnabled = true;
void rtcEnable(bool e)
{

View File

@ -544,8 +544,8 @@ bool MainWnd::FileRun()
"rtcEnabled",
-1,
tempName);
if(i != (UINT)-1)
rtcEnable(i == 0 ? false : true);
rtcEnable(i == 0 ? false : true);
i = GetPrivateProfileInt(buffer,
"flashSize",
@ -564,8 +564,8 @@ bool MainWnd::FileRun()
"mirroringEnabled",
-1,
tempName);
if(i != (UINT)-1)
doMirroring (i == 0 ? false : true);
doMirroring(i == 0 ? false : true);
theApp.emulator = GBASystem;