From 2d565669248bff1a67fb8597ebe604199e8874a0 Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Wed, 5 Feb 2025 12:59:42 +0300 Subject: [PATCH] Remove the yield from the render thread. --- UnleashedRecomp/gpu/video.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/UnleashedRecomp/gpu/video.cpp b/UnleashedRecomp/gpu/video.cpp index fa692ee..3d4b291 100644 --- a/UnleashedRecomp/gpu/video.cpp +++ b/UnleashedRecomp/gpu/video.cpp @@ -4907,8 +4907,6 @@ static std::thread g_renderThread([] default: assert(false && "Unrecognized render command type."); break; } } - - std::this_thread::yield(); } });