mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Fix calculation of lines.
This commit is contained in:
parent
1bb1cf9e6c
commit
81c84025a2
@ -3958,7 +3958,7 @@ void View::DrawMemory()
|
||||
if( pages[i].empty() )
|
||||
{
|
||||
i++;
|
||||
while( pages[i].empty() )
|
||||
while( i < pages.size() && pages[i].empty() )
|
||||
{
|
||||
lines--;
|
||||
i++;
|
||||
|
Loading…
Reference in New Issue
Block a user