mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Merge pull request #8348 from JosJuice/mmu-setting
Disable full MMU by default and add it to global config GUI
This commit is contained in:
@ -236,6 +236,7 @@ void SConfig::SaveCoreSettings(IniFile& ini)
|
||||
core->Set("WiimoteEnableSpeaker", m_WiimoteEnableSpeaker);
|
||||
core->Set("RunCompareServer", bRunCompareServer);
|
||||
core->Set("RunCompareClient", bRunCompareClient);
|
||||
core->Set("MMU", bMMU);
|
||||
core->Set("EmulationSpeed", m_EmulationSpeed);
|
||||
core->Set("Overclock", m_OCFactor);
|
||||
core->Set("OverclockEnable", m_OCEnable);
|
||||
@ -767,11 +768,7 @@ void SConfig::LoadDefaults()
|
||||
bFastmem = true;
|
||||
bFPRF = false;
|
||||
bAccurateNaNs = false;
|
||||
#ifdef _M_X86_64
|
||||
bMMU = true;
|
||||
#else
|
||||
bMMU = false;
|
||||
#endif
|
||||
bLowDCBZHack = false;
|
||||
iBBDumpPort = -1;
|
||||
bSyncGPU = false;
|
||||
|
Reference in New Issue
Block a user