diff --git a/Core/System.cpp b/Core/System.cpp index e3c4a65db4..31f720be2e 100644 --- a/Core/System.cpp +++ b/Core/System.cpp @@ -391,8 +391,10 @@ void Core_UpdateDebugStats(bool collectStats) { mipsr4k.ClearJitCache(); } - kernelStats.ResetFrame(); - gpuStats.ResetFrame(); + if (!PSP_CoreParameter().frozen && !Core_IsStepping()) { + kernelStats.ResetFrame(); + gpuStats.ResetFrame(); + } } void Core_ForceDebugStats(bool enable) {