make it callable

This commit is contained in:
Rudolf Polzer 2010-12-23 09:39:59 +01:00
parent c19e7448fa
commit 4e12b14cdf
2 changed files with 8 additions and 0 deletions

View File

@ -1565,6 +1565,11 @@ int ConvertBSPMain( int argc, char **argv )
convertFunc = ConvertBSPToASE;
map_allowed = qfalse;
}
else if( !Q_stricmp( argv[ i ], "obj" ) )
{
convertFunc = ConvertBSPToOBJ;
map_allowed = qfalse;
}
else if( !Q_stricmp( argv[ i ], "map_bp" ) )
{
convertFunc = ConvertBSPToMap_BP;

View File

@ -1530,6 +1530,9 @@ int ConvertBSPToMap_BP( char *bspName );
/* convert_ase.c */
int ConvertBSPToASE( char *bspName );
/* convert_obj.c */
int ConvertBSPToOBJ( char *bspName );
/* brush.c */
sideRef_t *AllocSideRef( side_t *side, sideRef_t *next );