Use valid default values

This commit is contained in:
CaCO3
2024-02-15 00:12:37 +01:00
committed by GitHub
parent ef64be3888
commit 6feae4e239

View File

@@ -81,9 +81,9 @@ bool ClassFlowTakeImage::ReadParameter(FILE* pfile, string& aktparamgraph)
std::vector<string> splitted; std::vector<string> splitted;
aktparamgraph = trim(aktparamgraph); aktparamgraph = trim(aktparamgraph);
int _brightness = -100; int _brightness = 0;
int _contrast = -100; int _contrast = 0;
int _saturation = -100; int _saturation = 0;
int _sharpness = 0; int _sharpness = 0;
int _autoExposureLevel = 0; int _autoExposureLevel = 0;