utils: mdldec: STUDIO_NF_SMOOTH texture flag means "smooth" texrendermode.

This commit is contained in:
Andrey Akhmichin 2021-01-10 03:14:44 +05:00 committed by Alibek Omarov
parent 221a9bab54
commit 1a59389261
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ static void WriteTextureRenderMode( FILE *fp )
if( texture->flags & STUDIO_NF_SMOOTH )
{
fprintf( fp, "$texrendermode \"%s\" \"alpha\" \n", texture->name ); // sven-coop extension
fprintf( fp, "$texrendermode \"%s\" \"nosmooth\" \n", texture->name ); // xash3d extension
fprintf( fp, "$texrendermode \"%s\" \"smooth\" \n", texture->name ); // xash3d extension
}
if( texture->flags & STUDIO_NF_ADDITIVE )