qbsp: fix tests

This commit is contained in:
Eric Wasylishen 2021-09-01 01:19:24 -06:00
parent 54d9e08033
commit 047bc1299a
2 changed files with 1 additions and 6 deletions

View File

@ -286,7 +286,7 @@ public:
bool fixRotateObjTexture;
bool fbspx_brushes;
bool fNoTextures;
const bspversion_t *target_version = nullptr;
const bspversion_t *target_version = &bspver_q1;
int dxSubdivide;
int dxLeakDist;
int maxNodeSize;

View File

@ -969,11 +969,6 @@ ParseOptions(char *szOptions)
options.target_version = &bspver_h2;
}
}
// default to bspver_q1
if (options.target_version == nullptr) {
options.target_version = &bspver_q1;
}
}