diff --git a/Source/Core/Common/SysConf.cpp b/Source/Core/Common/SysConf.cpp index d6aed4f29e..980318c06b 100644 --- a/Source/Core/Common/SysConf.cpp +++ b/Source/Core/Common/SysConf.cpp @@ -17,7 +17,7 @@ #include "Core/Movie.h" -SysConf::SysConf() : m_IsValid(false) +SysConf::SysConf() { UpdateLocation(); } diff --git a/Source/Core/Common/SysConf.h b/Source/Core/Common/SysConf.h index 83bed95a4f..e500267c53 100644 --- a/Source/Core/Common/SysConf.h +++ b/Source/Core/Common/SysConf.h @@ -182,5 +182,5 @@ private: std::string m_Filename; std::string m_FilenameDefault; std::vector m_Entries; - bool m_IsValid; + bool m_IsValid = false; };