From 1d984a65c2bd1caa7f243e3a9401b24c31513323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Thu, 19 Jan 2017 11:47:16 -0800 Subject: [PATCH] Cleanup. --- src/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string.cpp b/src/string.cpp index 0f694f8..4496366 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -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'; }