Mercurial > sdl-ios-xcode
changeset 90:ee1f71c10889
Fix to allow SDL compiled under XFree v4 to work with XFree v3 xservers.
Contributed by Jarek Sobieszek
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Sat, 07 Jul 2001 08:08:42 +0000 |
parents | 69b8fac3e1c0 |
children | e85e03f195b4 |
files | src/video/x11/SDL_x11gamma.c src/video/x11/SDL_x11modes.c |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/x11/SDL_x11gamma.c Sat Jul 07 08:03:34 2001 +0000 +++ b/src/video/x11/SDL_x11gamma.c Sat Jul 07 08:08:42 2001 +0000 @@ -37,7 +37,7 @@ static int X11_SetGammaNoLock(_THIS, float red, float green, float blue) { #ifdef XFREE86_VMGAMMA - if (use_vidmode) { + if (use_vidmode >= 2) { XF86VidModeGamma gamma; Bool succeeded; @@ -98,7 +98,7 @@ static int X11_GetGammaNoLock(_THIS, float *red, float *green, float *blue) { #ifdef XFREE86_VMGAMMA - if (use_vidmode) { + if (use_vidmode >= 2) { XF86VidModeGamma gamma; if (XVidMode(GetGamma, (SDL_Display, SDL_Screen, &gamma))) { *red = gamma.red;