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); } } }