mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-07 08:39:04 +00:00
Config: Port CPU overclock settings to new config system.
This commit is contained in:
parent
a29d7625dd
commit
cae4b545bd
9 changed files with 26 additions and 37 deletions
|
@ -238,8 +238,6 @@ void SConfig::SaveCoreSettings(IniFile& ini)
|
|||
core->Set("RunCompareClient", bRunCompareClient);
|
||||
core->Set("MMU", bMMU);
|
||||
core->Set("EmulationSpeed", m_EmulationSpeed);
|
||||
core->Set("Overclock", m_OCFactor);
|
||||
core->Set("OverclockEnable", m_OCEnable);
|
||||
core->Set("GPUDeterminismMode", m_strGPUDeterminismMode);
|
||||
core->Set("PerfMapDir", m_perfDir);
|
||||
core->Set("EnableCustomRTC", bEnableCustomRTC);
|
||||
|
@ -485,8 +483,6 @@ void SConfig::LoadCoreSettings(IniFile& ini)
|
|||
core->Get("AccurateNaNs", &bAccurateNaNs, false);
|
||||
core->Get("DisableICache", &bDisableICache, false);
|
||||
core->Get("EmulationSpeed", &m_EmulationSpeed, 1.0f);
|
||||
core->Get("Overclock", &m_OCFactor, 1.0f);
|
||||
core->Get("OverclockEnable", &m_OCEnable, false);
|
||||
core->Get("GPUDeterminismMode", &m_strGPUDeterminismMode, "auto");
|
||||
core->Get("PerfMapDir", &m_perfDir, "");
|
||||
core->Get("EnableCustomRTC", &bEnableCustomRTC, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue