diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-08-30 18:29:03 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-08-30 18:29:03 -0400 |
| commit | 93b0f46d343adf9e47b4bd05655c9de42ebf9b96 (patch) | |
| tree | d79d7f4f2b166c417a6fed6162c575be2c526cdc /Source/Core/DolphinWX/Src/Debugger/CodeView.cpp | |
| parent | b6728c1405d3a1a0ba3daa480f18e3d765a97b9f (diff) | |
Fix a tiny bug in CodeView.cpp. If statement with more than one line was missing braces.
Diffstat (limited to 'Source/Core/DolphinWX/Src/Debugger/CodeView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Src/Debugger/CodeView.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Src/Debugger/CodeView.cpp b/Source/Core/DolphinWX/Src/Debugger/CodeView.cpp index 619d4a75e9..de5933d55c 100644 --- a/Source/Core/DolphinWX/Src/Debugger/CodeView.cpp +++ b/Source/Core/DolphinWX/Src/Debugger/CodeView.cpp @@ -277,9 +277,11 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event) { u32 dest = AddrToBranch(selection); if (dest) + { Center(dest); RaiseEvent(); } + } break; case IDM_ADDFUNCTION: |
