fix a few issues with actually using the dsp lle debugger: stepping/reg updates/etc should behave better

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3879 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-07-24 02:15:04 +00:00
parent 2ab09ecf57
commit 873190d148
3 changed files with 36 additions and 25 deletions

View file

@ -107,7 +107,10 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
case ID_STEPTOOL:
if (DSPCore_GetState() == DSPCORE_STEPPING)
{
DSPCore_Step();
Refresh();
}
break;
case ID_SHOWPCTOOL:
@ -120,8 +123,8 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
void DSPDebuggerLLE::OnShowPC(wxCommandEvent& event)
{
// UpdateDisAsmListView will focus on PC
Refresh();
FocusOnPC();
}
void DSPDebuggerLLE::Refresh()