Added missing member initializer.

Was uninitialized and thus saved a debug image on every startup as the boolean value was mostly non-zero.
This commit is contained in:
Kai Blaschke
2022-10-23 17:59:05 +02:00
parent ad2203f7bb
commit 44e664d81a

View File

@ -102,7 +102,7 @@ public:
bool correction{ true };
bool noSwitch{ false };
bool writeNextFrameToFile;
bool writeNextFrameToFile{ false };
milliseconds lastTimeFPS{ nowMilliseconds() };
milliseconds currentTimeFPS{ nowMilliseconds() };