mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-10 01:59:22 +00:00
Config: Port Fastmem setting to new config system.
This commit is contained in:
parent
88d725c918
commit
dc7e7d08ad
11 changed files with 14 additions and 18 deletions
|
@ -100,7 +100,6 @@ void SConfig::SaveCoreSettings(IniFile& ini)
|
|||
IniFile::Section* core = ini.GetOrCreateSection("Core");
|
||||
|
||||
core->Set("TimingVariance", iTimingVariance);
|
||||
core->Set("Fastmem", bFastmem);
|
||||
core->Set("CPUThread", bCPUThread);
|
||||
core->Set("SyncGPU", bSyncGPU);
|
||||
core->Set("SyncGpuMaxDistance", iSyncGpuMaxDistance);
|
||||
|
@ -136,7 +135,6 @@ void SConfig::LoadCoreSettings(IniFile& ini)
|
|||
{
|
||||
IniFile::Section* core = ini.GetOrCreateSection("Core");
|
||||
|
||||
core->Get("Fastmem", &bFastmem, true);
|
||||
core->Get("TimingVariance", &iTimingVariance, 40);
|
||||
core->Get("CPUThread", &bCPUThread, true);
|
||||
core->Get("SlotA", (int*)&m_EXIDevice[0], ExpansionInterface::EXIDEVICE_MEMORYCARDFOLDER);
|
||||
|
@ -275,7 +273,6 @@ void SConfig::LoadDefaults()
|
|||
|
||||
iTimingVariance = 40;
|
||||
bCPUThread = false;
|
||||
bFastmem = true;
|
||||
bMMU = false;
|
||||
iBBDumpPort = -1;
|
||||
bSyncGPU = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue