fix compile errors on OSX for standalone

This commit is contained in:
proddy
2023-01-30 19:01:43 +01:00
parent 77a6304fc3
commit da94fc052d
3 changed files with 3 additions and 3 deletions

View File

@@ -692,7 +692,7 @@ void Helpers::CharToUpperUTF8(char * c) {
switch (*c) {
case (char)0xC3:
// grave, acute, circumflex, diaeresis, etc.
if ((p_v >= 0xA0) && (p_v <= 0xBE)) {
if ((p_v >= (char)0xA0) && (p_v <= (char)0xBE)) {
*p -= 0x20;
}
break;