From ebcaac9a0892a11cd1444b4a227f5dd8cd88054b Mon Sep 17 00:00:00 2001 From: Spoike Date: Sat, 26 Nov 2005 21:13:45 +0000 Subject: [PATCH] This should fix the recent windows gamma issues. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1591 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_vidnt.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/gl/gl_vidnt.c b/engine/gl/gl_vidnt.c index f0f144b5b..ae09c06dd 100644 --- a/engine/gl/gl_vidnt.c +++ b/engine/gl/gl_vidnt.c @@ -1116,6 +1116,7 @@ void GLAppActivate(BOOL fActive, BOOL minimize) } v_gamma.modified = true; //so that we can start doing palette flashes and things + gammaworks = true; } if (!fActive) @@ -1146,6 +1147,8 @@ void GLAppActivate(BOOL fActive, BOOL minimize) else gammaworks = SetDeviceGammaRamp(maindc, originalgammaramps); } + + vid_hardwaregamma.modified = true; }