Fixed bug with scrolling caused by recent rendering optimisations. Simply forgot to increment the line index on a skipped line

This commit is contained in:
Andy Adshead 2019-02-02 10:28:03 +00:00
parent 347377d28d
commit 9906bb8abe

View file

@ -62,7 +62,10 @@ namespace Ryujinx.Profiler.UI
// Skip rendering out of bounds bars
if (top < 0 || bottom > Height)
{
verticalIndex++;
continue;
}
GL.Color3(Color.Green);