summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/CodeWindow.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-02-17 23:07:10 +0000
committerhrydgard <hrydgard@gmail.com>2009-02-17 23:07:10 +0000
commit4f48594aa8bcf8e9dc1e355cf14efc2d0f676f2e (patch)
tree5f574c8d90d5718c208f52802975c7f4592b9976 /Source/Core/DebuggerWX/Src/CodeWindow.cpp
parent767d54d56f8cb5f7e63bfb95e147536ff1394b3f (diff)
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
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindow.cpp4
1 files changed, 2 insertions, 2 deletions
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: