This commit is contained in:
Branimir Karadžić
2017-01-19 11:47:16 -08:00
parent 2441cf2153
commit 1d984a65c2

View File

@@ -67,7 +67,7 @@ namespace bx
bool toBool(const char* _str)
{
char ch = (char)toLower(_str[0]);
char ch = toLower(_str[0]);
return ch == 't' || ch == '1';
}