summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorRachel Bryk <RachelBryk@gmail.com>2014-09-09 00:24:49 -0400
committerRachel Bryk <RachelBryk@gmail.com>2014-09-09 00:24:49 -0400
commitf93aa7087cb75e9d7539cac2b47befb5123f6ab8 (patch)
tree0b3d0cbb3cffbca137ae6ef2d50887c6f398bd11 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parent44c4bc134a89514f986ca4fdb1e4fd24a7d1db6c (diff)
Kill Core::g_CoreStartupParameter.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindow.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
index 8750dc7979..ee86c0b61e 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
@@ -501,37 +501,37 @@ void CCodeWindow::OnCPUMode(wxCommandEvent& event)
bAutomaticStart = !bAutomaticStart;
return;
case IDM_JITOFF:
- Core::g_CoreStartupParameter.bJITOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITOff = event.IsChecked();
break;
case IDM_JITLSOFF:
- Core::g_CoreStartupParameter.bJITLoadStoreOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITLoadStoreOff = event.IsChecked();
break;
case IDM_JITLSLXZOFF:
- Core::g_CoreStartupParameter.bJITLoadStorelXzOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITLoadStorelXzOff = event.IsChecked();
break;
case IDM_JITLSLWZOFF:
- Core::g_CoreStartupParameter.bJITLoadStorelwzOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITLoadStorelwzOff = event.IsChecked();
break;
case IDM_JITLSLBZXOFF:
- Core::g_CoreStartupParameter.bJITLoadStorelbzxOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITLoadStorelbzxOff = event.IsChecked();
break;
case IDM_JITLSFOFF:
- Core::g_CoreStartupParameter.bJITLoadStoreFloatingOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITLoadStoreFloatingOff = event.IsChecked();
break;
case IDM_JITLSPOFF:
- Core::g_CoreStartupParameter.bJITLoadStorePairedOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITLoadStorePairedOff = event.IsChecked();
break;
case IDM_JITFPOFF:
- Core::g_CoreStartupParameter.bJITFloatingPointOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITFloatingPointOff = event.IsChecked();
break;
case IDM_JITIOFF:
- Core::g_CoreStartupParameter.bJITIntegerOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITIntegerOff = event.IsChecked();
break;
case IDM_JITPOFF:
- Core::g_CoreStartupParameter.bJITPairedOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITPairedOff = event.IsChecked();
break;
case IDM_JITSROFF:
- Core::g_CoreStartupParameter.bJITSystemRegistersOff = event.IsChecked();
+ SConfig::GetInstance().m_LocalCoreStartupParameter.bJITSystemRegistersOff = event.IsChecked();
break;
}