Increased number of Start menu injection retries

This commit is contained in:
Valentin Radu
2021-11-10 21:46:13 +02:00
parent aa0371e0fb
commit 2f1be803f0
+1 -1
View File
@@ -288,7 +288,7 @@ DWORD WINAPI HookStartMenu(HookStartMenuParams* params)
else
{
retry++;
if (retry > 5) return 0;
if (retry > 20) return 0;
Sleep(params->dwTimeout);
}
}