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:
parent
fafb88672a
commit
cd3ad0b149
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user