summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-10-26 23:23:45 +1100
committerskidau <skidau@gmail.com>2014-10-26 23:23:45 +1100
commit4570dd7eeb9033c0e349d3a9f0126f24010b0699 (patch)
tree6e8704557eb9843e54ccc33675d4949900d3376c /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parent7eebbcdca7f5dff60aff387f789bc1292905c68a (diff)
Fixed a crash that would occur if a new watch were added by entering a watch name.
Code style updates.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
index 481240c498..35678e43dd 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
@@ -342,7 +342,7 @@ void CCodeWindow::StepOut()
PowerPC::CoreMode oldMode = PowerPC::GetMode();
PowerPC::SetMode(PowerPC::MODE_INTERPRETER);
UGeckoInstruction inst = Memory::Read_Instruction(PC);
- GekkoOPInfo *opinfo = GetOpInfo(inst);
+ GekkoOPInfo* opinfo = GetOpInfo(inst);
while (inst.hex != 0x4e800020 && steps < timeout) // check for blr
{
if (inst.LK)