diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-01-20 19:00:51 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-01-20 19:00:51 +0000 |
| commit | d3d4cc641c8df4a6067079bc84f3b4bf53eb1c53 (patch) | |
| tree | 63775a27e3fdcdc5bb4e5bcd6300254c1d17ae51 /Source/Core/DebuggerWX | |
| parent | 8f0ca9998b0c7778b2367de24ac16dfe90806fe5 (diff) | |
Fix insanely annoyingly behaviour when setting breakpoints
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1962 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX')
| -rw-r--r-- | Source/Core/DebuggerWX/Src/CodeWindow.cpp | 6 |
1 files 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); } ///////////////////////////////////////////////// |
