From ff5572f97d651611d5dcf748bf4d22a15234461d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Tue, 13 Jul 2021 22:47:53 -0600 Subject: [PATCH] light: log number of bounce lights at the end of MakeBounceLights --- light/bounce.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/light/bounce.cc b/light/bounce.cc index f1942758..4f3a1c07 100644 --- a/light/bounce.cc +++ b/light/bounce.cc @@ -331,4 +331,6 @@ MakeBounceLights (const globalconfig_t &cfg, const mbsp_t *bsp) make_bounce_lights_args_t args { bsp, &cfg }; //mxd. https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html RunThreadsOn(0, bsp->numfaces, MakeBounceLightsThread, (void *)&args); + + logprint("%d bounce lights created\n", static_cast(radlights.size())); }