From d3d4cc641c8df4a6067079bc84f3b4bf53eb1c53 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Tue, 20 Jan 2009 19:00:51 +0000 Subject: [PATCH] Fix insanely annoyingly behaviour when setting breakpoints git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1962 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/Src/CodeWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp index d60a8a4bbf..e15b2475c9 100644 --- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp @@ -855,9 +855,9 @@ void CCodeWindow::Update() UpdateButtonStates(); - /* Automatically show the current PC position when a breakpoint is hit or - when we pause */ - codeview->Center(PC); + /* DO NOT Automatically show the current PC position when a breakpoint is hit or + when we pause SINCE THIS CAN BE CALLED AT OTHER TIMES TOO */ + // codeview->Center(PC); } /////////////////////////////////////////////////