mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +01:00
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:
parent
2ff44b5a66
commit
a04809b4d1
@ -377,7 +377,6 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
|
||||
}
|
||||
strcat(dis, buf);
|
||||
}
|
||||
curAddress += 32;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user