mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #6451 from leoetlino/default-mmu
Config: Set bMMU to true by default on x64
This commit is contained in:
@ -555,7 +555,7 @@ void SConfig::LoadCoreSettings(IniFile& ini)
|
|||||||
core->Get("WiimoteEnableSpeaker", &m_WiimoteEnableSpeaker, false);
|
core->Get("WiimoteEnableSpeaker", &m_WiimoteEnableSpeaker, false);
|
||||||
core->Get("RunCompareServer", &bRunCompareServer, false);
|
core->Get("RunCompareServer", &bRunCompareServer, false);
|
||||||
core->Get("RunCompareClient", &bRunCompareClient, false);
|
core->Get("RunCompareClient", &bRunCompareClient, false);
|
||||||
core->Get("MMU", &bMMU, false);
|
core->Get("MMU", &bMMU, bMMU);
|
||||||
core->Get("BBDumpPort", &iBBDumpPort, -1);
|
core->Get("BBDumpPort", &iBBDumpPort, -1);
|
||||||
core->Get("SyncGPU", &bSyncGPU, false);
|
core->Get("SyncGPU", &bSyncGPU, false);
|
||||||
core->Get("SyncGpuMaxDistance", &iSyncGpuMaxDistance, 200000);
|
core->Get("SyncGpuMaxDistance", &iSyncGpuMaxDistance, 200000);
|
||||||
@ -770,7 +770,11 @@ void SConfig::LoadDefaults()
|
|||||||
bFastmem = true;
|
bFastmem = true;
|
||||||
bFPRF = false;
|
bFPRF = false;
|
||||||
bAccurateNaNs = false;
|
bAccurateNaNs = false;
|
||||||
|
#ifdef _M_X86_64
|
||||||
|
bMMU = true;
|
||||||
|
#else
|
||||||
bMMU = false;
|
bMMU = false;
|
||||||
|
#endif
|
||||||
bDCBZOFF = false;
|
bDCBZOFF = false;
|
||||||
bLowDCBZHack = false;
|
bLowDCBZHack = false;
|
||||||
iBBDumpPort = -1;
|
iBBDumpPort = -1;
|
||||||
|
Reference in New Issue
Block a user