testqbsp: use -noverbose by default

This commit is contained in:
Eric Wasylishen 2022-06-27 22:44:08 -06:00
parent 7439fc30db
commit 29a622d106
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"}; // first arg is the exe path, which we're ignoring in this case
std::vector<std::string> args{"", "-noverbose"}; // first arg is the exe path, which we're ignoring in this case
for (auto &arg : extra_args) {
args.push_back(arg);
}