mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix clampmapped images being always treated as sRGB.
This commit is contained in:
parent
fb6b08bdd6
commit
e6e0d47099
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ static qboolean ParseStage( shaderStage_t *stage, char **text )
|
|||
else if ( !Q_stricmp( token, "clampmap" ) )
|
||||
{
|
||||
imgType_t type = IMGTYPE_COLORALPHA;
|
||||
imgFlags_t flags = IMGFLAG_CLAMPTOEDGE | IMGFLAG_SRGB;
|
||||
imgFlags_t flags = IMGFLAG_CLAMPTOEDGE;
|
||||
|
||||
token = COM_ParseExt( text, qfalse );
|
||||
if ( !token[0] )
|
||||
|
|
Loading…
Reference in a new issue