From 57bed163bea1f2efd8d47acd6fa7ac83543cc78f Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Thu, 23 Mar 2017 14:38:08 -0600 Subject: [PATCH] qbsp: change "brushprimtivies" label to shorter "bp" --- qbsp/map.cc | 2 +- qbsp/qbsp.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qbsp/map.cc b/qbsp/map.cc index cebd865c..3abfc428 100644 --- a/qbsp/map.cc +++ b/qbsp/map.cc @@ -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"); diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index 10fcc24e..b68ef930 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -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);