From 983d5c959fc98e17cda2b53ee80813f078e2a4d9 Mon Sep 17 00:00:00 2001 From: Sean Du Date: Mon, 22 Jun 2026 14:08:10 +0800 Subject: [PATCH] Decrease kGameAssemblySettleDelayMs to 100ms Signed-off-by: Sean Du --- src/hook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hook.cpp b/src/hook.cpp index 9661138..86720a7 100644 --- a/src/hook.cpp +++ b/src/hook.cpp @@ -10,7 +10,7 @@ namespace { using SetSchemeModeFn = void (*)(int, const MethodInfo*); constexpr int kHttpSchemeType = 0; constexpr DWORD kHookPollIntervalMs = 500; - constexpr DWORD kGameAssemblySettleDelayMs = 5000; + constexpr DWORD kGameAssemblySettleDelayMs = 100; constexpr int kHookPollMaxAttempts = 600; volatile LONG g_hook_installed = 0;