From 29a622d106ec537e2ec5d23d4409df00fb12706d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 27 Jun 2022 22:44:08 -0600 Subject: [PATCH] testqbsp: use -noverbose by default --- qbsp/test_qbsp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/test_qbsp.cc b/qbsp/test_qbsp.cc index d24ec874..b42cbda2 100644 --- a/qbsp/test_qbsp.cc +++ b/qbsp/test_qbsp.cc @@ -169,7 +169,7 @@ static std::tuple> LoadTestmap(c auto bsp_path = map_path; bsp_path.replace_extension(".bsp"); - std::vector args{"", "-nopercent"}; // first arg is the exe path, which we're ignoring in this case + std::vector args{"", "-noverbose"}; // first arg is the exe path, which we're ignoring in this case for (auto &arg : extra_args) { args.push_back(arg); }