1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

(indirectly) Fix ini boolean parsing error

This commit is contained in:
Cornee Traas 2013-08-10 23:51:24 +02:00
parent fafb88672a
commit cd3ad0b149

View File

@ -17,9 +17,9 @@ static bool StringToBool(const wxString str)
static wxString BoolToString(const bool b) static wxString BoolToString(const bool b)
{ {
if(b) return "enable"; if(b) return "true";
return "disable"; return "false";
} }
static wxSize StringToSize(const wxString str) static wxSize StringToSize(const wxString str)