Skip to content

Commit

Permalink
Merge pull request #4791 from degasus/temp
Browse files Browse the repository at this point in the history
DSPLLE: Only enable the DSP JIT on x64.
  • Loading branch information
degasus committed Feb 1, 2017
2 parents a9627ac + 2c69e97 commit 094a75f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Source/Core/Core/HW/DSPLLE/DSPLLE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,11 @@ static bool FillDSPInitOptions(DSPInitOptions* opts)
if (!LoadDSPRom(opts->coef_contents.data(), coef_file, DSP_COEF_BYTE_SIZE))
return false;

opts->core_type = SConfig::GetInstance().m_DSPEnableJIT ? DSPInitOptions::CORE_JIT :
DSPInitOptions::CORE_INTERPRETER;
opts->core_type = DSPInitOptions::CORE_INTERPRETER;
#ifdef _M_X86
if (SConfig::GetInstance().m_DSPEnableJIT)
opts->core_type = DSPInitOptions::CORE_JIT;
#endif

if (SConfig::GetInstance().m_DSPCaptureLog)
{
Expand Down

0 comments on commit 094a75f

Please sign in to comment.