mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
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:
@ -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:
|
||||
|
Reference in New Issue
Block a user