mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 03:29:11 +00: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:
commit
c2c8a14966
3 changed files with 11 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue