Fix a tiny bug in CodeView.cpp. If statement with more than one line was missing braces.
This commit is contained in:
parent
b6728c1405
commit
93b0f46d34
|
@ -277,9 +277,11 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
|
|||
{
|
||||
u32 dest = AddrToBranch(selection);
|
||||
if (dest)
|
||||
{
|
||||
Center(dest);
|
||||
RaiseEvent();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case IDM_ADDFUNCTION:
|
||||
|
|
Loading…
Reference in New Issue