diff options
author | Kai Blaschke <kai.blaschke@kb-dev.net> | 2024-02-19 23:29:39 +0100 |
---|---|---|
committer | Kai Blaschke <kai.blaschke@kb-dev.net> | 2024-02-19 23:44:59 +0100 |
commit | d0099a6d790b66f21e4e266e569d64fb82fb0a81 (patch) | |
tree | 69174faa3f95079e5e33e00970d161c9b3f02048 /source/base/StarCellularLighting.hpp | |
parent | 42fc1d6714036a2814f1e6ab293eaa0009320ef4 (diff) |
Fixed some uninitialized members
May have caused undefined behavior in few cases, as most of the fixed members were used before being initialized.
Diffstat (limited to 'source/base/StarCellularLighting.hpp')
-rw-r--r-- | source/base/StarCellularLighting.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/base/StarCellularLighting.hpp b/source/base/StarCellularLighting.hpp index 30aa489..c82032c 100644 --- a/source/base/StarCellularLighting.hpp +++ b/source/base/StarCellularLighting.hpp @@ -17,7 +17,7 @@ namespace Star { // individually. class CellularLightingCalculator { public: - CellularLightingCalculator(bool monochrome = false); + explicit CellularLightingCalculator(bool monochrome = false); typedef ColoredCellularLightArray::Cell Cell; |