Add missing brace.

This commit is contained in:
Henrik Rydgård 2013-11-20 16:57:12 +01:00
parent 0ce37f1418
commit 89b48cf95b

View File

@ -435,8 +435,8 @@ void CtrlMemView::onMouseUp(WPARAM wParam, LPARAM lParam, int button)
{
case ID_MEMVIEW_DUMP:
{
DumpMemoryWindow dump(wnd,debugger);
bool priorDumpWasStepping=Core_IsStepping();
DumpMemoryWindow dump(wnd, debugger);
bool priorDumpWasStepping = Core_IsStepping();
if (!priorDumpWasStepping) // If emulator isn't paused
{
Core_EnableStepping(true); //force paused state
@ -447,6 +447,7 @@ void CtrlMemView::onMouseUp(WPARAM wParam, LPARAM lParam, int button)
Core_EnableStepping(false); //Resume emulation automatically
}
break;
}
case ID_MEMVIEW_COPYVALUE_8:
{