[client]: ignore Alt-F4 in ignoreQuit mode (#46)

* [client]: ignore Alt-F4 in ignoreQuit mode

* [client]: turn down the SNR for SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4

* [client]: turn down the SNR for SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS
This commit is contained in:
Alam Arias 2018-02-01 18:32:46 -05:00 committed by Geoffrey McRae
parent 35b4d75eea
commit 4fb9fc3b3f

View File

@ -786,10 +786,11 @@ int run()
)
);
if (params.ignoreQuit)
SDL_SetHint(SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4, "1");
if (params.fullscreen)
{
SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0");
}
// set the compositor hint to bypass for low latency
SDL_SysWMinfo wminfo;
@ -1449,4 +1450,4 @@ int main(int argc, char * argv[])
}
return ret;
}
}