# HG changeset patch
# User Sam Lantinga
- The SDL_VIDEO_FULLSCREEN_HEAD environment variable can be set to 0 to place fullscreen SDL windows on the first Xinerama screen. + Added SDL_VIDEO_FULLSCREEN_DISPLAY as a preferred synonym for SDL_VIDEO_FULLSCREEN_HEAD on X11. +
++ The SDL_VIDEO_FULLSCREEN_DISPLAY environment variable can be set to 0 to place fullscreen SDL windows on the first Xinerama screen.
Added the SDL_VIDEO_FBCON_ROTATION environment variable to control output orientation on the framebuffer console. diff -r 719faf118c38 -r 34a0a589b9c4 src/video/x11/SDL_x11modes.c --- 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); }