mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-17 19:00:29 -05:00
Config: Port Fastmem setting to new config system.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user