mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00: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
1 changed files with 0 additions and 1 deletions
|
@ -377,7 +377,6 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
|
||||||
}
|
}
|
||||||
strcat(dis, buf);
|
strcat(dis, buf);
|
||||||
}
|
}
|
||||||
curAddress += 32;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue