summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/CodeWindow.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2010-01-19 09:12:41 +0000
committerskidau <skidau@gmail.com>2010-01-19 09:12:41 +0000
commit5c27050cd8879fc87136d4887ef8d6618160bd2c (patch)
tree18d1b43c4a7b1cdf6164a8cca6f3121cf1b33e55 /Source/Core/DebuggerWX/Src/CodeWindow.cpp
parent5c526de39d7d386cbc2552e2a6e09fe0cdc62695 (diff)
Got rid of the sticky JIT window
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4885 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindow.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp
index 75c35cd2c4..4d8aa10a41 100644
--- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp
@@ -209,7 +209,6 @@ void CCodeWindow::OnHostMessage(wxCommandEvent& event)
case IDM_UPDATEDISASMDIALOG:
Update();
if (codeview) codeview->Center(PC);
-// if (m_JitWindow) Host_ShowJitResults(PC);
if (m_RegisterWindow) m_RegisterWindow->NotifyUpdate();
break;
@@ -268,7 +267,6 @@ void CCodeWindow::OnCodeStep(wxCommandEvent& event)
void CCodeWindow::JumpToAddress(u32 _Address)
{
codeview->Center(_Address);
- if (m_JitWindow) Host_ShowJitResults(_Address);
UpdateLists();
}
@@ -617,7 +615,7 @@ void CCodeWindow::InitBitmaps()
m_Bitmaps[Toolbar_SetPC] = wxGetBitmapFromMemory(toolbar_add_memcheck_png);
m_Bitmaps[Toolbar_DebugPause] = wxGetBitmapFromMemory(toolbar_pause_png);
- // scale to 16x16 for toolbar
+ // scale to 24x24 for toolbar
for (size_t n = Toolbar_DebugGo; n < ToolbarDebugBitmapMax; n++)
{
m_Bitmaps[n] = wxBitmap(m_Bitmaps[n].ConvertToImage().Scale(24, 24));