SCI: Fix textwidth computation for chars >= 128

svn-id: r52992
This commit is contained in:
Willem Jan Palenstijn 2010-10-03 14:52:15 +00:00
parent 6ca15d0888
commit 40e42f859f

View File

@ -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);