Fix a tiny bug in CodeView.cpp. If statement with more than one line was missing braces.

This commit is contained in:
Lioncash 2013-08-30 18:29:03 -04:00
parent b6728c1405
commit 93b0f46d34
1 changed files with 2 additions and 0 deletions

View File

@ -277,9 +277,11 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
{
u32 dest = AddrToBranch(selection);
if (dest)
{
Center(dest);
RaiseEvent();
}
}
break;
case IDM_ADDFUNCTION: