From b59eb30ab18230942405436155de1810be5e9b42 Mon Sep 17 00:00:00 2001 From: MaranBr Date: Mon, 14 Jul 2025 20:18:01 -0400 Subject: [PATCH] Increase delay from 8 to 12 for signaling syncpts --- src/video_core/host1x/nvdec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/host1x/nvdec.cpp b/src/video_core/host1x/nvdec.cpp index 741a7d5c12..c65170218d 100644 --- a/src/video_core/host1x/nvdec.cpp +++ b/src/video_core/host1x/nvdec.cpp @@ -68,7 +68,7 @@ void Nvdec::Execute() { if (Settings::values.nvdec_emulation.GetValue() == Settings::NvdecEmulation::Off) [[unlikely]] { // Signalling syncpts too fast can cause games to get stuck as they don't expect a <1ms // execution time. Sleep for half of a 60 fps frame just in case. - std::this_thread::sleep_for(std::chrono::milliseconds(8)); + std::this_thread::sleep_for(std::chrono::milliseconds(12)); return; } switch (decoder->GetCurrentCodec()) {