summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/CodeWindow.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2010-04-10 15:41:44 +0000
committerskidau <skidau@gmail.com>2010-04-10 15:41:44 +0000
commitbe70b43a2b8decf90da6386f78d2f1d43f60190d (patch)
treea3883df183a37d440efb18515178c15600929394 /Source/Core/DebuggerWX/Src/CodeWindow.cpp
parent4b5b074b8189a2aea39175f8dc6c8177f5008630 (diff)
JIT single stepping
Enable it by uncommenting the defines in JitBase.h. For breakpoints to work in JIT mode, the block cache must be disabled. The PPC instruction trace, regs, fpu regs, flags, generated x86 binary and generated x86 disasm are logged in the Dynamic Recompiler log. Fixes issue 1052. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5314 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp
index c3a2c75790..75cb555ddf 100644
--- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp
@@ -692,7 +692,7 @@ void CCodeWindow::UpdateButtonStates()
}
}
- ToolBar->EnableTool(IDM_STEP, Initialized && Stepping && UseInterpreter());
+ ToolBar->EnableTool(IDM_STEP, Initialized && Stepping);
if (ToolBar) ToolBar->Realize();