From f089d0db209b3e7df612a3c7642fcb97ed2dca5a Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 22 Jul 2022 20:01:36 -0400 Subject: [PATCH] default -nosoftware for qbism --- qbsp/qbsp.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index 683f9a8b..32785062 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -251,6 +251,12 @@ void qbsp_settings::postinitialize(int argc, const char **argv) maxedges.setValue(0, settings::source::GAME_TARGET); } + if (qbsp_options.target_version == &bspver_qbism) { + if (!software.isChanged()) { + software.setValue(false, settings::source::GAME_TARGET); + } + } + if (!software.value() && !subdivide.isChanged()) { subdivide.setValue(0, settings::source::GAME_TARGET); }