qbsp: change "brushprimtivies" label to shorter "bp"

This commit is contained in:
Eric Wasylishen 2017-03-23 14:38:08 -06:00
parent 78d517a99d
commit 57bed163be
2 changed files with 2 additions and 2 deletions

View File

@ -1266,7 +1266,7 @@ void ConvertMapFile(void)
filename += "-valve220.map";
break;
case texcoord_style_t::TX_BRUSHPRIM:
filename += "-brushprimitives.map";
filename += "-bp.map";
break;
default:
Error("Internal error: unknown texcoord_style_t\n");

View File

@ -824,7 +824,7 @@ ParseOptions(char *szOptions)
options.convertMapTexFormat = texcoord_style_t::TX_QUARK_TYPE1;
} else if (!Q_strcasecmp(szTok2, "valve220")) {
options.convertMapTexFormat = texcoord_style_t::TX_VALVE_220;
} else if (!Q_strcasecmp(szTok2, "brushprimitives")) {
} else if (!Q_strcasecmp(szTok2, "bp")) {
options.convertMapTexFormat = texcoord_style_t::TX_BRUSHPRIM;
} else {
Error("Invalid argument to option %s", szTok);