summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorZach Hilman <DarkLordZach@users.noreply.github.com>2019-06-05 21:52:37 +0200
committerGitHub <noreply@github.com>2019-06-05 21:52:37 +0200
commit81e09bb1213720c31b7881c9396385375dac5749 (patch)
tree06ea501a4f516ac82f1ac91f953d4325475940bc /src/video_core
parentMerge pull request #2541 from lioncash/input (diff)
parentcore/core_timing_util: Amend casing of cyclesTo* functions (diff)
downloadyuzu-81e09bb1213720c31b7881c9396385375dac5749.tar
yuzu-81e09bb1213720c31b7881c9396385375dac5749.tar.gz
yuzu-81e09bb1213720c31b7881c9396385375dac5749.tar.bz2
yuzu-81e09bb1213720c31b7881c9396385375dac5749.tar.lz
yuzu-81e09bb1213720c31b7881c9396385375dac5749.tar.xz
yuzu-81e09bb1213720c31b7881c9396385375dac5749.tar.zst
yuzu-81e09bb1213720c31b7881c9396385375dac5749.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/gpu_thread.cpp2
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);
}