aboutsummaryrefslogtreecommitdiff
path: root/src/core/core_timing.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-02-13 21:41:25 -0500
committerGitHub <noreply@github.com>2019-02-13 21:41:25 -0500
commitf0c4ac9abd75af3d3f1aebb6d60f8a27663a6a5c (patch)
tree81f2416a1735d9f01022b4d905eb4d1db7baa304 /src/core/core_timing.cpp
parentcd542d5aacc3ac8eec5ca5be182a76da56c19d05 (diff)
parent0829ef97cac6cb96c49d1401433d9f46639bfeb8 (diff)
Merge pull request #2116 from lioncash/size
threadsafe_queue: Remove NeedSize template parameter
Diffstat (limited to 'src/core/core_timing.cpp')
-rw-r--r--src/core/core_timing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 2b7ca97664..0308030c55 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -54,10 +54,10 @@ static std::vector<Event> event_queue;
static u64 event_fifo_id;
// the queue for storing the events from other threads threadsafe until they will be added
// to the event_queue by the emu thread
-static Common::MPSCQueue<Event, false> ts_queue;
+static Common::MPSCQueue<Event> ts_queue;
// the queue for unscheduling the events from other threads threadsafe
-static Common::MPSCQueue<std::pair<const EventType*, u64>, false> unschedule_queue;
+static Common::MPSCQueue<std::pair<const EventType*, u64>> unschedule_queue;
constexpr int MAX_SLICE_LENGTH = 20000;