From 4f48594aa8bcf8e9dc1e355cf14efc2d0f676f2e Mon Sep 17 00:00:00 2001 From: hrydgard Date: Tue, 17 Feb 2009 23:07:10 +0000 Subject: Remove/cleanup some auto-"breaks" in the code. they are annoying when debugging. (jit64 hits the DSP.cpp case in animal crossing) :/ git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2300 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/Src/CodeWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp') diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp index 9c6ee31c9f..4b3b1de03c 100644 --- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp @@ -695,7 +695,7 @@ void CCodeWindow::OnCodeStep(wxCommandEvent& event) } else { - CCPU::EnableStepping(true); + CCPU::EnableStepping(true); // Break Host_UpdateLogDisplay(); } @@ -708,7 +708,7 @@ void CCodeWindow::OnCodeStep(wxCommandEvent& event) break; case IDM_STEPOVER: - CCPU::EnableStepping(true); + CCPU::EnableStepping(true); // TODO: Huh? break; case IDM_SKIP: -- cgit v1.2.3