From 89b48cf95b53bd502324a7b6c7966670be2c6ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Wed, 20 Nov 2013 16:57:12 +0100 Subject: [PATCH] Add missing brace. --- Windows/Debugger/CtrlMemView.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Windows/Debugger/CtrlMemView.cpp b/Windows/Debugger/CtrlMemView.cpp index 53b634e367..25f623d7cd 100644 --- a/Windows/Debugger/CtrlMemView.cpp +++ b/Windows/Debugger/CtrlMemView.cpp @@ -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: {