summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-03-12 03:21:44 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2025-04-22 23:49:32 -0500
commitaf960651e81edf9fd57aba8e19857a5aa48ca184 (patch)
tree9a93a6dd269a8a54dd8de359b96e3ec3a57afa5c /Source/Core/VideoCommon
parentd04e9e79a6c8ab59f8d273664c95e35e30354de7 (diff)
Common: SPSCQueue cleanups and improvements.
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/PerformanceTracker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/PerformanceTracker.h b/Source/Core/VideoCommon/PerformanceTracker.h
index e45b5aab4e..fac6435101 100644
--- a/Source/Core/VideoCommon/PerformanceTracker.h
+++ b/Source/Core/VideoCommon/PerformanceTracker.h
@@ -59,7 +59,7 @@ private:
// Push'd from Count()
// and Pop'd from UpdateStats()
- Common::SPSCQueue<DT, false> m_raw_dts;
+ Common::SPSCQueue<DT> m_raw_dts;
std::atomic<DT> m_last_raw_dt = DT::zero();
// Amount of time to sample dt's over (defaults to config)