Dumb bug regarding clearing of timestamps. Start is already removed so no need to add it to the start

This commit is contained in:
Andy Adshead 2019-02-02 03:23:43 +00:00
parent 0fe8238d16
commit aef7582888

View file

@ -157,7 +157,7 @@ namespace Ryujinx.Profiler
if (toRemove > 0)
{
_timestamps.RemoveRange(toPreserveStart + toPreserveLen, toRemove);
_timestamps.RemoveRange(toPreserveLen, toRemove);
}
}
}