diff options
author | Lioncash <mathew1800@gmail.com> | 2019-06-05 01:52:42 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-06-05 02:31:24 +0200 |
commit | 42f5fd0ab32b117901d0cae228103811719606ff (patch) | |
tree | 66fed7f7c35ba2448006f1393a9b868ed29632d5 /src/video_core | |
parent | core/core_timing_utils: Simplify overload set (diff) | |
download | yuzu-42f5fd0ab32b117901d0cae228103811719606ff.tar yuzu-42f5fd0ab32b117901d0cae228103811719606ff.tar.gz yuzu-42f5fd0ab32b117901d0cae228103811719606ff.tar.bz2 yuzu-42f5fd0ab32b117901d0cae228103811719606ff.tar.lz yuzu-42f5fd0ab32b117901d0cae228103811719606ff.tar.xz yuzu-42f5fd0ab32b117901d0cae228103811719606ff.tar.zst yuzu-42f5fd0ab32b117901d0cae228103811719606ff.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/gpu_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_thread.cpp b/src/video_core/gpu_thread.cpp index 1e2ff46b0..3f0939ec9 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp @@ -75,7 +75,7 @@ void ThreadManager::StartThread(VideoCore::RendererBase& renderer, Tegra::DmaPus void ThreadManager::SubmitList(Tegra::CommandList&& entries) { const u64 fence{PushCommand(SubmitListCommand(std::move(entries)))}; - const s64 synchronization_ticks{Core::Timing::usToCycles(9000)}; + const s64 synchronization_ticks{Core::Timing::usToCycles(std::chrono::microseconds{9000})}; system.CoreTiming().ScheduleEvent(synchronization_ticks, synchronization_event, fence); } |