Merge pull request #7958 from Craftyawesome/cpu-emulation-order

Re-order cpu emulation options from fastest to slowest
This commit is contained in:
Léo Lam
2019-05-01 17:56:19 +02:00
committed by GitHub
2 changed files with 12 additions and 12 deletions

View File

@ -213,13 +213,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;