mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user