From 904d4a7eb09c220ab05f6718f5790a4af36523b2 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Wed, 22 Oct 2025 01:07:19 -0500 Subject: [PATCH] gdb: Make waiting for a process to start more forgiving (200ms per poll 10x -> 500ms) --- src/Ryujinx.HLE/Debugger/Debugger.MainThread.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.HLE/Debugger/Debugger.MainThread.cs b/src/Ryujinx.HLE/Debugger/Debugger.MainThread.cs index 94c0e5519..a76221da8 100644 --- a/src/Ryujinx.HLE/Debugger/Debugger.MainThread.cs +++ b/src/Ryujinx.HLE/Debugger/Debugger.MainThread.cs @@ -45,7 +45,7 @@ namespace Ryujinx.HLE.Debugger int retries = 10; while ((DebugProcess == null || GetThreads().Length == 0) && retries-- > 0) { - Thread.Sleep(200); + Thread.Sleep(500); } if (DebugProcess == null || GetThreads().Length == 0)