From ced1c9287924916edede2cced2097a3ce900d87b Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 22 Nov 2017 17:15:10 +0000 Subject: [PATCH] sdl backend: default to fullscreen off 1) it's impossible to use debugger in fullscreen 2) default is scale 1x so it's unusable for playing anyway --- sys/sdl/sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sdl/sdl.c b/sys/sdl/sdl.c index 714a85d..5fda528 100644 --- a/sys/sdl/sdl.c +++ b/sys/sdl/sdl.c @@ -21,7 +21,7 @@ struct fb fb; static int use_yuv = -1; -static int fullscreen = 1; +static int fullscreen = 0; static int use_altenter = 1; static int use_joy = 1, sdl_joy_num; static SDL_Joystick * sdl_joy = NULL;