mirror of https://github.com/PCSX2/pcsx2.git
Why is that file spaces and not tabs
This commit is contained in:
parent
deed83a282
commit
86bb50b9b7
|
@ -170,7 +170,7 @@ void IniLoader::Entry(const wxString &var, uint &value, const uint defvalue)
|
|||
void IniLoader::Entry(const wxString &var, bool &value, const bool defvalue)
|
||||
{
|
||||
// TODO : Stricter value checking on enabled/disabled?
|
||||
wxString dest(defvalue ? L"enabled" : L"disabled");
|
||||
wxString dest(defvalue ? L"enabled" : L"disabled");
|
||||
if (m_Config)
|
||||
m_Config->Read(var, &dest, dest);
|
||||
value = (dest == L"enabled") || (dest == L"1");
|
||||
|
|
Loading…
Reference in New Issue