Why is that file spaces and not tabs

This commit is contained in:
refractionpcsx2 2020-08-23 01:40:42 +01:00
parent deed83a282
commit 86bb50b9b7

View File

@ -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");