diff --git a/Ryujinx.Profiler/InternalProfile.cs b/Ryujinx.Profiler/InternalProfile.cs index a0d363ea86..9cb1eed65c 100644 --- a/Ryujinx.Profiler/InternalProfile.cs +++ b/Ryujinx.Profiler/InternalProfile.cs @@ -152,6 +152,13 @@ namespace Ryujinx.Profiler _preserve = PerformanceCounter.ElapsedTicks; ClearTimerQueue(); + // Reset all instant counts + foreach (KeyValuePair timer in Timers) + { + timer.Value.Instant = 0; + timer.Value.InstantCount = 0; + } + return Timers; }