mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-06 07:14:19 +00:00
Merge pull request #4791 from degasus/temp
DSPLLE: Only enable the DSP JIT on x64.
This commit is contained in:
commit
094a75f3cb
@ -142,8 +142,11 @@ static bool FillDSPInitOptions(DSPInitOptions* opts)
|
|||||||
if (!LoadDSPRom(opts->coef_contents.data(), coef_file, DSP_COEF_BYTE_SIZE))
|
if (!LoadDSPRom(opts->coef_contents.data(), coef_file, DSP_COEF_BYTE_SIZE))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
opts->core_type = SConfig::GetInstance().m_DSPEnableJIT ? DSPInitOptions::CORE_JIT :
|
opts->core_type = DSPInitOptions::CORE_INTERPRETER;
|
||||||
DSPInitOptions::CORE_INTERPRETER;
|
#ifdef _M_X86
|
||||||
|
if (SConfig::GetInstance().m_DSPEnableJIT)
|
||||||
|
opts->core_type = DSPInitOptions::CORE_JIT;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (SConfig::GetInstance().m_DSPCaptureLog)
|
if (SConfig::GetInstance().m_DSPCaptureLog)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user