diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-16 01:19:15 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-16 01:41:37 +0200 |
commit | 0435b7d361d45aa5eccb552d01df4cea3f4016c4 (patch) | |
tree | dbf2b76c32b7475982e8aa6fbcb274408bc809b9 /src | |
parent | core_timing: Make TimedCallback take std::chrono::nanoseconds (diff) | |
download | yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.gz yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.bz2 yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.lz yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.xz yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.tar.zst yuzu-0435b7d361d45aa5eccb552d01df4cea3f4016c4.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/core_timing.h | 2 |
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: u64 global_timer = 0; - std::chrono::nanoseconds start_point; - // The queue is a min-heap using std::make_heap/push_heap/pop_heap. // We don't use std::priority_queue because we need to be able to serialize, unserialize and // erase arbitrary events (RemoveEvent()) regardless of the queue order. These aren't |