testqbsp: shouldn't use -keepprt as the tests are checking for the .prt files

This commit is contained in:
Eric Wasylishen 2022-06-21 23:46:13 -06:00
parent b77c25dcd4
commit c054db0f48
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ static std::tuple<mbsp_t, bspxentries_t, std::optional<prtfile_t>> LoadTestmap(c
auto bsp_path = map_path;
bsp_path.replace_extension(".bsp");
std::vector<std::string> args{"", "-nopercent", "-keepprt"};
std::vector<std::string> args{"", "-nopercent"};
for (auto &arg : extra_args) {
args.push_back(arg);
}