From deed83a2822ac70b1c234975a7cac1b87a94d7e6 Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Sun, 23 Aug 2020 01:39:13 +0100 Subject: [PATCH] Revert bad wxString ini fix which was actually caused by a bad Arch package --- 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 3fc5ff592f..51d5276641 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 ? "enabled" : "disabled", 8); + wxString dest(defvalue ? L"enabled" : L"disabled"); if (m_Config) m_Config->Read(var, &dest, dest); value = (dest == L"enabled") || (dest == L"1");