diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-12-27 16:24:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-27 16:24:00 +0100 |
| commit | 529909fe901ee81cc20fdea453e4fa355b1078f2 (patch) | |
| tree | 9b75911d47d268291ba1891f6f917ad87d84fa30 /Source | |
| parent | f4b1155b4d1d0b6ef49236eb3adfd3437304a7c1 (diff) | |
| parent | 6052a5ca9be6a48509c9daebc05c7350909e8083 (diff) | |
Merge pull request #11379 from Sam-Belliveau/video-common-speed-counter-fix
Video Common: Fix Speed Counter Sample Size
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/VideoCommon/PerformanceMetrics.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
