diff src/video/x11/SDL_x11modes.c @ 4318:34a0a589b9c4 SDL-1.2

Added SDL_VIDEO_FULLSCREEN_DISPLAY as a preferred synonym for SDL_VIDEO_FULLSCREEN_HEAD on X11.
author Sam Lantinga <slouken@libsdl.org>
date Sat, 10 Oct 2009 15:06:04 +0000
parents 8ec3036098df
children
line wrap: on
line diff
--- a/src/video/x11/SDL_x11modes.c	Sat Oct 10 14:59:32 2009 +0000
+++ b/src/video/x11/SDL_x11modes.c	Sat Oct 10 15:06:04 2009 +0000
@@ -548,7 +548,10 @@
         int w, h;
         SDL_NAME(XineramaScreenInfo) *xinerama;
 
-        const char *variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
+        const char *variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_DISPLAY");
+	if ( !variable ) {
+        	variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
+	}
         if ( variable ) {
                 desired = SDL_atoi(variable);
         }