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);
|
u32 dest = AddrToBranch(selection);
|
||||||
if (dest)
|
if (dest)
|
||||||
|
{
|
||||||
Center(dest);
|
Center(dest);
|
||||||
RaiseEvent();
|
RaiseEvent();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IDM_ADDFUNCTION:
|
case IDM_ADDFUNCTION:
|
||||||
|
|
Loading…
Reference in New Issue