Restart the launcher if it had crashed when invoked (#7127)

This commit is contained in:
Ivan Stošić 2020-10-13 10:26:04 +02:00 коммит произвёл GitHub
Родитель 45124c2245
Коммит bb8cc0a305
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -271,6 +271,12 @@ public:
// For now, hotkeyId will always be zero
if (m_enabled)
{
if (WaitForSingleObject(m_hProcess, 0) == WAIT_OBJECT_0)
{
// The process exited, restart it
enable();
}
SetEvent(m_hEvent);
return true;
}