summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/renderergl1/tr_shader.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/renderergl1/tr_shader.c b/src/renderergl1/tr_shader.c
index a6115f16..116eee94 100644
--- a/src/renderergl1/tr_shader.c
+++ b/src/renderergl1/tr_shader.c
@@ -1477,7 +1477,7 @@ static qboolean ParseShader( char **text )
continue;
}
// sun parms
- else if ( !Q_stricmp( token, "q3map_sun" ) ) {
+ else if ( !Q_stricmp( token, "q3map_sun" ) || !Q_stricmp( token, "q3map_sunExt" ) ) {
float a, b;
token = COM_ParseExt( text, qfalse );
@@ -1504,6 +1504,9 @@ static qboolean ParseShader( char **text )
tr.sunDirection[0] = cos( a ) * cos( b );
tr.sunDirection[1] = sin( a ) * cos( b );
tr.sunDirection[2] = sin( b );
+
+ SkipRestOfLine( text );
+ continue;
}
else if ( !Q_stricmp( token, "deformVertexes" ) ) {
ParseDeform( text );