Config: Remove CompareServer and CompareClient settings.

This commit is contained in:
Admiral H. Curtiss 2022-01-05 21:26:17 +01:00
parent bc14485489
commit 032f0da35e
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
6 changed files with 2 additions and 18 deletions

View file

@ -635,9 +635,8 @@ static void EmuThread(std::unique_ptr<BootParameters> boot, WindowSystemInfo wsi
// This adds the SyncGPU handler to CoreTiming, so now CoreTiming::Advance might block.
Fifo::Prepare();
// Setup our core, but can't use dynarec if we are compare server
if (Config::Get(Config::MAIN_CPU_CORE) != PowerPC::CPUCore::Interpreter &&
(!core_parameter.bRunCompareServer || core_parameter.bRunCompareClient))
// Setup our core
if (Config::Get(Config::MAIN_CPU_CORE) != PowerPC::CPUCore::Interpreter)
{
PowerPC::SetMode(PowerPC::CoreMode::JIT);
}