Browse Source

Increased number of Start menu injection retries

pull/400/head
Valentin Radu 4 years ago
parent
commit
2f1be803f0
  1. 2
      ExplorerPatcher/StartMenu.c

2
ExplorerPatcher/StartMenu.c

@ -288,7 +288,7 @@ DWORD WINAPI HookStartMenu(HookStartMenuParams* params)
else else
{ {
retry++; retry++;
if (retry > 5) return 0; if (retry > 20) return 0;
Sleep(params->dwTimeout); Sleep(params->dwTimeout);
} }
} }

Loading…
Cancel
Save