mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
(indirectly) Fix ini boolean parsing error
This commit is contained in:
parent
fafb88672a
commit
cd3ad0b149
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue