From 6052a5ca9be6a48509c9daebc05c7350909e8083 Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Mon, 26 Dec 2022 16:47:12 -0500 Subject: [PATCH] Fix Speed Counter Sample Size --- Source/Core/VideoCommon/PerformanceMetrics.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/PerformanceMetrics.h b/Source/Core/VideoCommon/PerformanceMetrics.h index e486f17729..b01c0782ab 100644 --- a/Source/Core/VideoCommon/PerformanceMetrics.h +++ b/Source/Core/VideoCommon/PerformanceMetrics.h @@ -34,7 +34,7 @@ public: private: PerformanceTracker m_fps_counter{"render_times.txt"}; PerformanceTracker m_vps_counter{"vblank_times.txt"}; - PerformanceTracker m_speed_counter{nullptr, 6000000}; + PerformanceTracker m_speed_counter{nullptr, 500000}; }; extern PerformanceMetrics g_perf_metrics;