mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00: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:
parent
767d54d56f
commit
4f48594aa8
8 changed files with 12 additions and 21 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue