make it callable
This commit is contained in:
parent
c19e7448fa
commit
4e12b14cdf
|
|
@ -1565,6 +1565,11 @@ int ConvertBSPMain( int argc, char **argv )
|
||||||
convertFunc = ConvertBSPToASE;
|
convertFunc = ConvertBSPToASE;
|
||||||
map_allowed = qfalse;
|
map_allowed = qfalse;
|
||||||
}
|
}
|
||||||
|
else if( !Q_stricmp( argv[ i ], "obj" ) )
|
||||||
|
{
|
||||||
|
convertFunc = ConvertBSPToOBJ;
|
||||||
|
map_allowed = qfalse;
|
||||||
|
}
|
||||||
else if( !Q_stricmp( argv[ i ], "map_bp" ) )
|
else if( !Q_stricmp( argv[ i ], "map_bp" ) )
|
||||||
{
|
{
|
||||||
convertFunc = ConvertBSPToMap_BP;
|
convertFunc = ConvertBSPToMap_BP;
|
||||||
|
|
|
||||||
|
|
@ -1530,6 +1530,9 @@ int ConvertBSPToMap_BP( char *bspName );
|
||||||
/* convert_ase.c */
|
/* convert_ase.c */
|
||||||
int ConvertBSPToASE( char *bspName );
|
int ConvertBSPToASE( char *bspName );
|
||||||
|
|
||||||
|
/* convert_obj.c */
|
||||||
|
int ConvertBSPToOBJ( char *bspName );
|
||||||
|
|
||||||
|
|
||||||
/* brush.c */
|
/* brush.c */
|
||||||
sideRef_t *AllocSideRef( side_t *side, sideRef_t *next );
|
sideRef_t *AllocSideRef( side_t *side, sideRef_t *next );
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user