TimeManager: fix uninitalized vars
This commit is contained in:
parent
d09046f9a2
commit
45786de6c9
1 changed files with 2 additions and 2 deletions
|
@ -105,8 +105,8 @@ private:
|
|||
SGPropertyNode_ptr _maxFrameRate;
|
||||
SGPropertyNode_ptr _localTimeStringNode;
|
||||
|
||||
bool _lastClockFreeze;
|
||||
bool _adjustWarpOnUnfreeze;
|
||||
bool _lastClockFreeze = false;
|
||||
bool _adjustWarpOnUnfreeze = false;
|
||||
|
||||
// frame-rate / worst-case latency / update-rate counters
|
||||
SGPropertyNode_ptr _frameRate;
|
||||
|
|
Loading…
Add table
Reference in a new issue