X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.c;h=b6cdf649725b3fd08feccd44f152430e4a3069ca;hb=68d1418be737276c8214780106399c0dae588d1c;hp=59e5fd61c27c711c46e7a6cd07603505e8c26bc4;hpb=b06464b4dc26c0e31ef0bca48b31a4dfbdd549e6;p=rocksndiamonds.git diff --git a/src/libgame/system.c b/src/libgame/system.c index 59e5fd61..b6cdf649 100644 --- a/src/libgame/system.c +++ b/src/libgame/system.c @@ -438,9 +438,7 @@ void CloseVideoDisplay(void) void InitVideoBuffer(int width, int height, int depth, boolean fullscreen) { -#if 0 - static boolean initialized = FALSE; -#endif + printf("::: InitVideoBuffer\n"); video.width = width; video.height = height; @@ -448,6 +446,7 @@ void InitVideoBuffer(int width, int height, int depth, boolean fullscreen) video.fullscreen_available = FULLSCREEN_STATUS; video.fullscreen_enabled = FALSE; + // video.fullscreen_initial = FALSE; #if 0 video.fullscreen_mode_current = NULL; video.fullscreen_modes = NULL; @@ -455,13 +454,6 @@ void InitVideoBuffer(int width, int height, int depth, boolean fullscreen) video.window_scaling_available = WINDOW_SCALING_STATUS; -#if 0 -#if defined(PLATFORM_ANDROID) - if (!initialized) - video.fullscreen_enabled = TRUE; -#endif -#endif - #if defined(TARGET_SDL) SDLInitVideoBuffer(&backbuffer, &window, fullscreen); #else @@ -469,10 +461,6 @@ void InitVideoBuffer(int width, int height, int depth, boolean fullscreen) #endif drawto = backbuffer; - -#if 0 - initialized = TRUE; -#endif } inline static void FreeBitmapPointers(Bitmap *bitmap)