summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-07-15 19:19:15 -0400
committerGravatar Lioncash2020-07-15 19:41:37 -0400
commit0435b7d361d45aa5eccb552d01df4cea3f4016c4 (patch)
treedbf2b76c32b7475982e8aa6fbcb274408bc809b9
parentcore_timing: Make TimedCallback take std::chrono::nanoseconds (diff)
downloadyuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.gz
yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.xz
yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.zip
core_timing: Remove unused data member
Shrinks the size of the CoreTiming class by 8 bytes.
-rw-r--r--src/core/core_timing.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h
index a21356a08..120c74e46 100644
--- a/src/core/core_timing.h
+++ b/src/core/core_timing.h
@@ -139,8 +139,6 @@ private:
139 139
140 u64 global_timer = 0; 140 u64 global_timer = 0;
141 141
142 std::chrono::nanoseconds start_point;
143
144 // The queue is a min-heap using std::make_heap/push_heap/pop_heap. 142 // The queue is a min-heap using std::make_heap/push_heap/pop_heap.
145 // We don't use std::priority_queue because we need to be able to serialize, unserialize and 143 // We don't use std::priority_queue because we need to be able to serialize, unserialize and
146 // erase arbitrary events (RemoveEvent()) regardless of the queue order. These aren't 144 // erase arbitrary events (RemoveEvent()) regardless of the queue order. These aren't