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)