Do not minimize fullscreen window on focus loss

This commit is contained in:
Arti Zirk 2017-12-15 04:27:53 +02:00 committed by Geoffrey McRae
parent e03621a622
commit d1bd5b3115

View file

@ -676,6 +676,11 @@ int run()
)
);
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;
SDL_VERSION(&wminfo.version);