Rename UseCPUThread to SeparateCPUThread.

This commit is contained in:
Unknown W. Brackets
2013-08-09 22:41:33 -07:00
parent a56cac1eb3
commit b0e6967697
4 changed files with 10 additions and 11 deletions
+2 -2
View File
@@ -89,7 +89,7 @@ void Config::Load(const char *iniFileName)
#else
cpu->Get("Jit", &bJit, true);
#endif
cpu->Get("UseCPUThread", &bUseCPUThread, false);
cpu->Get("SeparateCPUThread", &bSeparateCPUThread, false);
cpu->Get("FastMemory", &bFastMemory, false);
cpu->Get("CPUSpeed", &iLockedCPUSpeed, false);
@@ -227,7 +227,7 @@ void Config::Save()
IniFile::Section *cpu = iniFile.GetOrCreateSection("CPU");
cpu->Set("Jit", bJit);
cpu->Set("UseCPUThread", bUseCPUThread);
cpu->Set("SeparateCPUThread", bSeparateCPUThread);
cpu->Set("FastMemory", bFastMemory);
cpu->Set("CPUSpeed", iLockedCPUSpeed);