debugger: don't make spacebar step the ppc.
don't call UpdateGUI() each time the statusbar is updated. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7234 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2f14598687
commit
de25440bb3
|
@ -68,17 +68,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// msvc >= msvc10 has stdint.h/cstdint
|
#include <stdint.h>
|
||||||
#ifdef _MSC_VER
|
|
||||||
typedef u8 uint8_t;
|
|
||||||
typedef s8 int8_t;
|
|
||||||
typedef u16 uint16_t;
|
|
||||||
typedef s16 int16_t;
|
|
||||||
typedef u32 uint32_t;
|
|
||||||
typedef s32 int32_t;
|
|
||||||
#else
|
|
||||||
#include <stdint.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
|
|
|
@ -165,9 +165,6 @@ wxAuiToolBar *CCodeWindow::GetToolBar()
|
||||||
|
|
||||||
void CCodeWindow::OnKeyDown(wxKeyEvent& event)
|
void CCodeWindow::OnKeyDown(wxKeyEvent& event)
|
||||||
{
|
{
|
||||||
if (event.GetKeyCode() == WXK_SPACE && event.GetModifiers() == wxMOD_NONE)
|
|
||||||
SingleStep();
|
|
||||||
else
|
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -643,10 +643,7 @@ void CFrame::OnHostMessage(wxCommandEvent& event)
|
||||||
|
|
||||||
case IDM_UPDATESTATUSBAR:
|
case IDM_UPDATESTATUSBAR:
|
||||||
if (GetStatusBar() != NULL)
|
if (GetStatusBar() != NULL)
|
||||||
{
|
|
||||||
GetStatusBar()->SetStatusText(event.GetString(), event.GetInt());
|
GetStatusBar()->SetStatusText(event.GetString(), event.GetInt());
|
||||||
UpdateGUI();
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IDM_UPDATETITLE:
|
case IDM_UPDATETITLE:
|
||||||
|
|
Loading…
Reference in New Issue