(indirectly) Fix ini boolean parsing error
This commit is contained in:
+2
-2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user