diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-03-06 04:27:03 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-03-08 03:17:46 +0100 |
commit | 3053a6237525ae870791eff480812016a3d4ec1e (patch) | |
tree | c746dd30ed544deee05a9a7da9f744a98a317b61 /src/video_core | |
parent | native_clock: Wait for 10 seconds instead of 30 (diff) | |
download | yuzu-3053a6237525ae870791eff480812016a3d4ec1e.tar yuzu-3053a6237525ae870791eff480812016a3d4ec1e.tar.gz yuzu-3053a6237525ae870791eff480812016a3d4ec1e.tar.bz2 yuzu-3053a6237525ae870791eff480812016a3d4ec1e.tar.lz yuzu-3053a6237525ae870791eff480812016a3d4ec1e.tar.xz yuzu-3053a6237525ae870791eff480812016a3d4ec1e.tar.zst yuzu-3053a6237525ae870791eff480812016a3d4ec1e.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 9c103c0d4..050b11874 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp @@ -25,7 +25,7 @@ static void RunThread(std::stop_token stop_token, Core::System& system, SCOPE_EXIT({ MicroProfileOnThreadExit(); }); Common::SetCurrentThreadName(name.c_str()); - Common::SetCurrentThreadPriority(Common::ThreadPriority::High); + Common::SetCurrentThreadPriority(Common::ThreadPriority::Critical); system.RegisterHostThread(); auto current_context = context.Acquire(); |