From aef7582888d32de469ec230d345c6c2a5374ea48 Mon Sep 17 00:00:00 2001 From: Andy Adshead Date: Sat, 2 Feb 2019 03:23:43 +0000 Subject: [PATCH] Dumb bug regarding clearing of timestamps. Start is already removed so no need to add it to the start --- Ryujinx.Profiler/TimingInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Profiler/TimingInfo.cs b/Ryujinx.Profiler/TimingInfo.cs index 23d6a5173f..2dc3072340 100644 --- a/Ryujinx.Profiler/TimingInfo.cs +++ b/Ryujinx.Profiler/TimingInfo.cs @@ -157,7 +157,7 @@ namespace Ryujinx.Profiler if (toRemove > 0) { - _timestamps.RemoveRange(toPreserveStart + toPreserveLen, toRemove); + _timestamps.RemoveRange(toPreserveLen, toRemove); } } }