summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2011-02-24 05:59:46 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2011-02-24 05:59:46 +0000
commitde25440bb3075a1a35244cd3aea19bc257de50a3 (patch)
tree09bb2a37a3da20b57c8d44a3a69f1b0ef0269c8e /Source/Core
parent2f14598687a1ccf5668e3ff3a9486175011b7cd4 (diff)
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
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/IPC_HLE/l2cap.h12
-rw-r--r--Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp5
-rw-r--r--Source/Core/DolphinWX/Src/Frame.cpp3
3 files changed, 2 insertions, 18 deletions
diff --git a/Source/Core/Core/Src/IPC_HLE/l2cap.h b/Source/Core/Core/Src/IPC_HLE/l2cap.h
index a3cff02187..e240dafd8d 100644
--- a/Source/Core/Core/Src/IPC_HLE/l2cap.h
+++ b/Source/Core/Core/Src/IPC_HLE/l2cap.h
@@ -68,17 +68,7 @@
#pragma once
-// msvc >= msvc10 has stdint.h/cstdint
-#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
+#include <stdint.h>
/**************************************************************************
**************************************************************************
diff --git a/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp
index ca8f5f7598..7c48bbcdee 100644
--- a/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp
+++ b/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp
@@ -165,10 +165,7 @@ wxAuiToolBar *CCodeWindow::GetToolBar()
void CCodeWindow::OnKeyDown(wxKeyEvent& event)
{
- if (event.GetKeyCode() == WXK_SPACE && event.GetModifiers() == wxMOD_NONE)
- SingleStep();
- else
- event.Skip();
+ event.Skip();
}
void CCodeWindow::OnHostMessage(wxCommandEvent& event)
diff --git a/Source/Core/DolphinWX/Src/Frame.cpp b/Source/Core/DolphinWX/Src/Frame.cpp
index f46765f72e..4a12d72a0a 100644
--- a/Source/Core/DolphinWX/Src/Frame.cpp
+++ b/Source/Core/DolphinWX/Src/Frame.cpp
@@ -643,10 +643,7 @@ void CFrame::OnHostMessage(wxCommandEvent& event)
case IDM_UPDATESTATUSBAR:
if (GetStatusBar() != NULL)
- {
GetStatusBar()->SetStatusText(event.GetString(), event.GetInt());
- UpdateGUI();
- }
break;
case IDM_UPDATETITLE: