Update gfx_sdl2.c

if fullscreened, escape to exit fullscreen
master
HengiFettlich 2020-05-08 12:24:40 +02:00
parent 14b0282267
commit 848f7c352b
1 changed files with 5 additions and 0 deletions

View File

@ -167,6 +167,11 @@ static void gfx_sdl_onkeydown(int scancode) {
configFullscreen = !configFullscreen;
}
else if (state[SDL_SCANCODE_ESCAPE] && configFullscreen)
{
SDL_SetWindowFullscreen(wnd, 0);
configFullscreen = false;
}
}
static void gfx_sdl_onkeyup(int scancode) {