Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #6451 from leoetlino/default-mmu
Config: Set bMMU to true by default on x64
  • Loading branch information
degasus committed Mar 20, 2018
2 parents 35bfa64 + f2b9a66 commit 43c92c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/Core/Core/ConfigManager.cpp
Expand Up @@ -555,7 +555,7 @@ void SConfig::LoadCoreSettings(IniFile& ini)
core->Get("WiimoteEnableSpeaker", &m_WiimoteEnableSpeaker, false);
core->Get("RunCompareServer", &bRunCompareServer, false);
core->Get("RunCompareClient", &bRunCompareClient, false);
core->Get("MMU", &bMMU, false);
core->Get("MMU", &bMMU, bMMU);
core->Get("BBDumpPort", &iBBDumpPort, -1);
core->Get("SyncGPU", &bSyncGPU, false);
core->Get("SyncGpuMaxDistance", &iSyncGpuMaxDistance, 200000);
Expand Down Expand Up @@ -770,7 +770,11 @@ void SConfig::LoadDefaults()
bFastmem = true;
bFPRF = false;
bAccurateNaNs = false;
#ifdef _M_X86_64
bMMU = true;
#else
bMMU = false;
#endif
bDCBZOFF = false;
bLowDCBZHack = false;
iBBDumpPort = -1;
Expand Down

0 comments on commit 43c92c8

Please sign in to comment.