Merge pull request #11379 from Sam-Belliveau/video-common-speed-counter-fix

Video Common: Fix Speed Counter Sample Size
This commit is contained in:
Admiral H. Curtiss
2022-12-27 16:24:00 +01:00
committed by GitHub

View File

@ -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;