From a04809b4d1c43c0cb0ae224dab4ef83f82161276 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 10 Aug 2014 03:01:47 -0400 Subject: [PATCH] DolphinWX: Fix scrolling in hex mode for the memory view Prior to this after painting the hex values, it would increment the curAddress by 32. This is not only a bug, but unnecessary, since the OnMouseDownL and OnScrollWheel functions should be the only things to handle address incrementing for scrolling purposes. --- Source/Core/DolphinWX/Debugger/MemoryView.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/DolphinWX/Debugger/MemoryView.cpp b/Source/Core/DolphinWX/Debugger/MemoryView.cpp index c291b9c5ef..ef3b1ecd8f 100644 --- a/Source/Core/DolphinWX/Debugger/MemoryView.cpp +++ b/Source/Core/DolphinWX/Debugger/MemoryView.cpp @@ -377,7 +377,6 @@ void CMemoryView::OnPaint(wxPaintEvent& event) } strcat(dis, buf); } - curAddress += 32; } else {