summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-10-08 22:13:33 -0400
committerLioncash <mathew1800@gmail.com>2014-10-08 22:13:33 -0400
commit677d74df88c186a516561099438ec80af4171659 (patch)
tree48bdafcef0086a2a1fa84c253d6348179a0fa1f1 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parentbb25b71201c615ac738a566be089a42ed5e4b6f2 (diff)
parent8bf2cf064118107f5bfe14c3ff5c4b05b02c6130 (diff)
Merge pull request #1240 from FioraAeterna/fixdebugblocklink
Debug: fix disable block linking option
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
index 5abbfc6bc8..4af423e134 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
@@ -397,7 +397,7 @@ void CCodeWindow::CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParam
interpreter->Check(_LocalCoreStartupParameter.iCPUCore == 0);
pCoreMenu->AppendSeparator();
- pCoreMenu->Append(IDM_JITBLOCKLINKING, _("&JIT Block Linking off"),
+ pCoreMenu->Append(IDM_JITNOBLOCKLINKING, _("&JIT Block Linking off"),
_("Provide safer execution by not linking the JIT blocks."),
wxITEM_CHECK);
@@ -596,9 +596,9 @@ bool CCodeWindow::JITNoBlockCache()
return GetMenuBar()->IsChecked(IDM_JITNOBLOCKCACHE);
}
-bool CCodeWindow::JITBlockLinking()
+bool CCodeWindow::JITNoBlockLinking()
{
- return GetMenuBar()->IsChecked(IDM_JITBLOCKLINKING);
+ return GetMenuBar()->IsChecked(IDM_JITNOBLOCKLINKING);
}
// Toolbar