1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2025-01-24 23:23:44 +01:00

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

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);
}
}