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
This commit is contained in:
hrydgard
2009-02-17 23:07:10 +00:00
parent 767d54d56f
commit 4f48594aa8
8 changed files with 12 additions and 21 deletions

View File

@ -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: