Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Retain dsp JIT setting when switching to HLE. Fixes issue 5691.
  • Loading branch information
rog9 committed Nov 9, 2012
1 parent f1f212b commit e8c0fea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/DolphinWX/Src/ConfigMain.cpp
Expand Up @@ -891,7 +891,8 @@ void CConfigMain::AudioSettingsChanged(wxCommandEvent& event)
{
case ID_DSPENGINE:
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = DSPEngine->GetSelection() == 0;
ac_Config.m_EnableJIT = DSPEngine->GetSelection() == 1;
if (!DSPEngine->GetSelection() == 0)
ac_Config.m_EnableJIT = DSPEngine->GetSelection() == 1;
ac_Config.Update();
break;

Expand Down

0 comments on commit e8c0fea

Please sign in to comment.