utils: mdldec: qc.c: always put $flags keyword with value.

This commit is contained in:
Andrey Akhmichin 2023-10-14 21:34:08 +05:00 committed by Alibek Omarov
parent a205a3e878
commit a575605c75
1 changed files with 1 additions and 6 deletions

View File

@ -610,13 +610,8 @@ void WriteQCScript( void )
if( !model_hdr->numtextures )
fputs( "$externaltextures\n", fp );
if( model_hdr->flags != 0 )
{
fprintf( fp, "$flags %i\n", model_hdr->flags );
printf( "WARNING: This model uses the $flags keyword set to %i\n", model_hdr->flags );
}
fputs( "\n", fp );
fprintf( fp, "$bbox %f %f %f", model_hdr->min[0], model_hdr->min[1], model_hdr->min[2] );