diff --git a/engines/sci/graphics/controls.cpp b/engines/sci/graphics/controls.cpp index 1abb8478a18..70ff70daaba 100644 --- a/engines/sci/graphics/controls.cpp +++ b/engines/sci/graphics/controls.cpp @@ -234,7 +234,7 @@ void GfxControls::kernelTexteditChange(reg_t controlObject, reg_t eventObject) { uint16 textWidth = 0; const char *textPtr = text.c_str(); while (*textPtr) - textWidth += _text16->_font->getCharWidth(*textPtr++); + textWidth += _text16->_font->getCharWidth((byte)*textPtr++); textWidth += _text16->_font->getCharWidth(eventKey); if (textWidth >= rect.width()) { _text16->SetFont(oldFontId);