Browse Source

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

pull/2/head
Andrey Akhmichin 12 months ago committed by Alibek Omarov
parent
commit
a575605c75
  1. 7
      utils/mdldec/qc.c

7
utils/mdldec/qc.c

@ -610,12 +610,7 @@ void WriteQCScript( void ) @@ -610,12 +610,7 @@ 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 );
}
fprintf( fp, "$flags %i\n", model_hdr->flags );
fputs( "\n", fp );

Loading…
Cancel
Save