Re-order cpu emulation options from fastest to slowest

Based on https://bugs.dolphin-emu.org/issues/11658

Update arrays.xml
This commit is contained in:
Craftyawesome
2019-04-04 09:10:04 -04:00
parent bfde5b931e
commit 20cc4508f0
2 changed files with 12 additions and 12 deletions

View File

@ -212,13 +212,13 @@ static void InitializeCPUCore(CPUCore cpu_core)
const std::vector<CPUCore>& AvailableCPUCores()
{
static const std::vector<CPUCore> cpu_cores = {
CPUCore::Interpreter,
CPUCore::CachedInterpreter,
#ifdef _M_X86_64
CPUCore::JIT64,
#elif defined(_M_ARM_64)
CPUCore::JITARM64,
#endif
CPUCore::CachedInterpreter,
CPUCore::Interpreter,
};
return cpu_cores;