light: log number of bounce lights at the end of MakeBounceLights

This commit is contained in:
Eric Wasylishen 2021-07-13 22:47:53 -06:00
parent 6e12b3d956
commit ff5572f97d
1 changed files with 2 additions and 0 deletions

View File

@ -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<int>(radlights.size()));
}