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.
This commit is contained in:
Lioncash 2014-08-10 03:01:47 -04:00
parent 2ff44b5a66
commit a04809b4d1

View File

@ -377,7 +377,6 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
} }
strcat(dis, buf); strcat(dis, buf);
} }
curAddress += 32;
} }
else else
{ {