q3map2: -onlyents: support *.ent as map file param

This commit is contained in:
Garux 2020-06-30 13:15:10 +03:00
parent d8e8c10849
commit 4bcce46a59

View File

@ -1034,7 +1034,9 @@ int BSPMain( int argc, char **argv ){
/* if we are doing a full map, delete the last saved region map */ /* if we are doing a full map, delete the last saved region map */
sprintf( path, "%s.reg", source ); sprintf( path, "%s.reg", source );
remove( path ); remove( path );
path_set_extension( name, ".map" ); /* might be .reg */ if ( !onlyents || !striEqual( path_get_filename_base_end( name ), ".ent" ) ) {
path_set_extension( name, ".map" ); /* .reg and .ent are ok too */
}
} }
/* if onlyents, just grab the entites and resave */ /* if onlyents, just grab the entites and resave */