mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
SysConf: In-class initialise member variables
This commit is contained in:
parent
a9ad83cec0
commit
e716a738dc
@ -17,7 +17,7 @@
|
||||
|
||||
#include "Core/Movie.h"
|
||||
|
||||
SysConf::SysConf() : m_IsValid(false)
|
||||
SysConf::SysConf()
|
||||
{
|
||||
UpdateLocation();
|
||||
}
|
||||
|
@ -182,5 +182,5 @@ private:
|
||||
std::string m_Filename;
|
||||
std::string m_FilenameDefault;
|
||||
std::vector<SSysConfEntry> m_Entries;
|
||||
bool m_IsValid;
|
||||
bool m_IsValid = false;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user