Application should start with completed = false to prevent errant message being sent immediately
This commit is contained in:
parent
82c890e109
commit
d7c06543f3
|
@ -39,7 +39,7 @@ State state;
|
||||||
uint64_t exposureTime = 0;
|
uint64_t exposureTime = 0;
|
||||||
steady_clock::time_point startTime;
|
steady_clock::time_point startTime;
|
||||||
bool displaying = false;
|
bool displaying = false;
|
||||||
bool completed = true;
|
bool completed = false;
|
||||||
bool timing = false;
|
bool timing = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue