diff options
| author | Fiora <fioraaeterna@gmail.com> | 2014-10-08 19:02:02 -0700 |
|---|---|---|
| committer | Fiora <fioraaeterna@gmail.com> | 2014-10-08 19:03:25 -0700 |
| commit | 8bf2cf064118107f5bfe14c3ff5c4b05b02c6130 (patch) | |
| tree | e0cba45d5b5929d0230930cbeb61784939bbdc6a /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | 2423b9b2bda889ea987dd14f79dcde4423a9c166 (diff) | |
Debug: fix disable block linking option
Previously it did the opposite of what it was supposed to; when checked, it'd
turn block linking on, and when unchecked, it'd turn it off.
Also update JITIL's block linking disabling in debug mode to match the behavior
of the regular JIT.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindow.cpp | 6 |
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 |
