Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a tiny bug in CodeView.cpp. If statement with more than one line …
…was missing braces.
  • Loading branch information
lioncash committed Aug 30, 2013
1 parent b6728c1 commit 93b0f46
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/DolphinWX/Src/Debugger/CodeView.cpp
Expand Up @@ -277,9 +277,11 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
{
u32 dest = AddrToBranch(selection);
if (dest)
{
Center(dest);
RaiseEvent();
}
}
break;

case IDM_ADDFUNCTION:
Expand Down

0 comments on commit 93b0f46

Please sign in to comment.