DSPCore: Rename JIT core type to JIT64

This changes the identifier to represent the x86-64 DSP emitter. If any
other JITs for the DSP are added in the future, they all can't use the
same generic identifier.
This commit is contained in:
Lioncash
2018-06-15 07:56:56 -04:00
parent 98af5e4c10
commit 161dffe2f9
3 changed files with 5 additions and 5 deletions

View File

@ -156,7 +156,7 @@ static bool FillDSPInitOptions(DSPInitOptions* opts)
opts->core_type = DSPInitOptions::CoreType::Interpreter;
#ifdef _M_X86
if (SConfig::GetInstance().m_DSPEnableJIT)
opts->core_type = DSPInitOptions::CoreType::JIT;
opts->core_type = DSPInitOptions::CoreType::JIT64;
#endif
if (SConfig::GetInstance().m_DSPCaptureLog)