diff options
Diffstat (limited to 'source/game/StarSystemWorldServerThread.hpp')
-rw-r--r-- | source/game/StarSystemWorldServerThread.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/game/StarSystemWorldServerThread.hpp b/source/game/StarSystemWorldServerThread.hpp index f81749e..6e09260 100644 --- a/source/game/StarSystemWorldServerThread.hpp +++ b/source/game/StarSystemWorldServerThread.hpp @@ -48,9 +48,9 @@ private: Vec3I m_systemLocation; SystemWorldServerPtr m_systemWorld; - atomic<bool> m_stop; - float m_periodicStorage; - bool m_triggerStorage; + atomic<bool> m_stop{false}; + float m_periodicStorage{300.0f}; + bool m_triggerStorage{ false}; String m_storageFile; shared_ptr<const atomic<bool>> m_pause; |