mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
memory viewer: fix horrible overflow that freezes rpcs3
This commit is contained in:
parent
3cfead4ca6
commit
ed8e5498d1
1 changed files with 2 additions and 1 deletions
|
@ -283,6 +283,7 @@ void memory_viewer_panel::resizeEvent(QResizeEvent *event)
|
||||||
else if (m_height_leftover < -font_height)
|
else if (m_height_leftover < -font_height)
|
||||||
{
|
{
|
||||||
m_height_leftover += font_height;
|
m_height_leftover += font_height;
|
||||||
|
if (m_rowcount > 0)
|
||||||
--m_rowcount;
|
--m_rowcount;
|
||||||
ShowMemory();
|
ShowMemory();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue