From cd3ad0b1497afe6e8e0733d975da2f01102a5cae Mon Sep 17 00:00:00 2001 From: Cornee Traas Date: Sat, 10 Aug 2013 23:51:24 +0200 Subject: [PATCH] (indirectly) Fix ini boolean parsing error --- rpcs3/Ini.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Ini.cpp b/rpcs3/Ini.cpp index d141b5bc4a..4f61916285 100644 --- a/rpcs3/Ini.cpp +++ b/rpcs3/Ini.cpp @@ -17,9 +17,9 @@ static bool StringToBool(const wxString str) static wxString BoolToString(const bool b) { - if(b) return "enable"; + if(b) return "true"; - return "disable"; + return "false"; } static wxSize StringToSize(const wxString str)