testqbsp: remove -noprogress as it hinders debugging

This commit is contained in:
Eric Wasylishen 2022-05-22 13:16:27 -06:00
parent ba884f6e1a
commit d3ee17ac59
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static mbsp_t LoadTestmap(const std::filesystem::path &name, std::vector<std::st
auto bsp_path = map_path;
bsp_path.replace_extension(".bsp");
std::vector<std::string> args{"", "-nopercent", "-noprogress", "-keepprt"};
std::vector<std::string> args{"", "-nopercent", "-keepprt"};
for (auto &arg : extra_args) {
args.push_back(arg);
}