diff --git a/tools/quake3/q3map2/light.c b/tools/quake3/q3map2/light.c index 25b5a87c..b6dcb122 100644 --- a/tools/quake3/q3map2/light.c +++ b/tools/quake3/q3map2/light.c @@ -2214,9 +2214,14 @@ int LightMain( int argc, char **argv ) { lightmapsRGB = qtrue; Sys_Printf( "Lighting is in sRGB\n" ); - i++; } - + + else if( !strcmp( argv[ i ], "-nosRGB" ) ) + { + lightmapsRGB = qfalse; + Sys_Printf( "Lighting is linear\n" ); + } + else if( !strcmp( argv[ i ], "-exposure" ) ) { f = atof( argv[ i + 1 ] );