From 86bb50b9b75983d93ff2549af5eadd4ad597cf8d Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Sun, 23 Aug 2020 01:40:42 +0100 Subject: [PATCH] Why is that file spaces and not tabs --- common/src/Utilities/IniInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/Utilities/IniInterface.cpp b/common/src/Utilities/IniInterface.cpp index 51d5276641..1c32c09612 100644 --- a/common/src/Utilities/IniInterface.cpp +++ b/common/src/Utilities/IniInterface.cpp @@ -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");