Shutting up a warning on systems where char is signed by default

svn-id: r34225
This commit is contained in:
Sven Hesse
2008-08-31 11:37:07 +00:00
parent ccf88578c8
commit 8e03cb1f14
+1 -1
View File
@@ -334,7 +334,7 @@ int Draw::stringLength(const char *str, int16 fontIndex) {
if (_vm->_global->_language == 10) {
for (int i = 0; str[i] != 0; i++) {
if (str[i+1] < 128) {
if (((unsigned char) str[i+1]) < 128) {
len += dword_8F74C[4];
i++;
} else