X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=tools%2Fquake3%2Fq3map2%2Flight.c;h=a09659795a527a326e7628697a36d20c8881d1fc;hb=10f758e6dd794f35cb422f7f55b476438634e31b;hp=ffcd832a5105f8f5648dc2381706d1c6ab2a506c;hpb=b7e36c120eb1546a6c6f97f30e42ab7f9a559c61;p=xonotic%2Fnetradiant.git diff --git a/tools/quake3/q3map2/light.c b/tools/quake3/q3map2/light.c index ffcd832a..a0965979 100644 --- a/tools/quake3/q3map2/light.c +++ b/tools/quake3/q3map2/light.c @@ -2343,12 +2343,21 @@ int LightMain( int argc, char **argv ){ Sys_Printf( "Colors are linear\n" ); } - else if ( !strcmp( argv[ i ], "-nosRGB" ) ) { + else if ( !strcmp( argv[ i ], "-sRGB" ) ) { lightmapsRGB = qtrue; - Sys_Printf( "Lighting is linear\n" ); + Sys_Printf( "Lighting is in sRGB\n" ); texturesRGB = qtrue; - Sys_Printf( "Textures are linear\n" ); + Sys_Printf( "Textures are in sRGB\n" ); colorsRGB = qtrue; + Sys_Printf( "Colors are in sRGB\n" ); + } + + else if ( !strcmp( argv[ i ], "-nosRGB" ) ) { + lightmapsRGB = qfalse; + Sys_Printf( "Lighting is linear\n" ); + texturesRGB = qfalse; + Sys_Printf( "Textures are linear\n" ); + colorsRGB = qfalse; Sys_Printf( "Colors are linear\n" ); }