1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 10:09:43 +01:00

Ignore resize events for unfocused windows

This commit is contained in:
Ethan Lee 2021-02-14 22:51:07 -05:00
parent 39abcfa8d9
commit 47df6c9d66

View file

@ -252,7 +252,12 @@ void KeyPoll::Poll()
{ {
/* Window Resize */ /* Window Resize */
case SDL_WINDOWEVENT_RESIZED: case SDL_WINDOWEVENT_RESIZED:
if (SDL_GetWindowFlags(
SDL_GetWindowFromID(evt.window.windowID)
) & SDL_WINDOW_INPUT_FOCUS)
{
resetWindow = true; resetWindow = true;
}
break; break;
/* Window Focus */ /* Window Focus */