Start and stop a separate thread for IO.
Not actually running anything on it yet.
This commit is contained in:
parent
e6b42768fe
commit
85ad4a80dd
4 changed files with 44 additions and 14 deletions
|
@ -90,6 +90,7 @@ void Config::Load(const char *iniFileName)
|
|||
cpu->Get("Jit", &bJit, true);
|
||||
#endif
|
||||
cpu->Get("SeparateCPUThread", &bSeparateCPUThread, false);
|
||||
cpu->Get("SeparateIOThread", &bSeparateIOThread, true);
|
||||
cpu->Get("FastMemory", &bFastMemory, false);
|
||||
cpu->Get("CPUSpeed", &iLockedCPUSpeed, false);
|
||||
|
||||
|
@ -228,6 +229,7 @@ void Config::Save()
|
|||
IniFile::Section *cpu = iniFile.GetOrCreateSection("CPU");
|
||||
cpu->Set("Jit", bJit);
|
||||
cpu->Set("SeparateCPUThread", bSeparateCPUThread);
|
||||
cpu->Set("SeparateIOThread", bSeparateIOThread);
|
||||
cpu->Set("FastMemory", bFastMemory);
|
||||
cpu->Set("CPUSpeed", iLockedCPUSpeed);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue