From 5d142e4ab2bf48fe28058f5cf96de0c6fec15ef1 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 1 May 2023 22:38:00 -0600 Subject: [PATCH] qbsp: remove -contenthack (dead code) --- include/qbsp/qbsp.hh | 1 - qbsp/qbsp.cc | 2 -- 2 files changed, 3 deletions(-) diff --git a/include/qbsp/qbsp.hh b/include/qbsp/qbsp.hh index f5512e18..20faf329 100644 --- a/include/qbsp/qbsp.hh +++ b/include/qbsp/qbsp.hh @@ -195,7 +195,6 @@ public: setting_bool oldrottex; setting_scalar epsilon; setting_scalar microvolume; - setting_bool contenthack; setting_bool leaktest; setting_bool outsidedebug; setting_bool debugchop; diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index 520eab14..32d994e4 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -508,8 +508,6 @@ qbsp_settings::qbsp_settings() oldrottex{this, "oldrottex", false, &debugging_group, "use old rotate_ brush texturing aligned at (0 0 0)"}, epsilon{this, "epsilon", 0.0001, 0.0, 1.0, &debugging_group, "customize epsilon value for point-on-plane checks"}, microvolume{this, "microvolume", 0.0, 0.0, 1000.0, &debugging_group, "microbrush volume"}, - contenthack{this, "contenthack", false, &debugging_group, - "hack to fix leaks through solids. causes missing faces in some cases so disabled by default"}, leaktest{this, "leaktest", false, &map_development_group, "make compilation fail if the map leaks"}, outsidedebug{this, "outsidedebug", false, &debugging_group, "write a .map after outside filling showing non-visible brush sides"},