SCI: adding separate status drawing code

now also draws "IV" in KQ4 correctly. This wasn't the case before because we reused the regular drawing code, which would see the 0xA ("IV") as linebreak

save for backport

svn-id: r52913
This commit is contained in:
Martin Kiewitz 2010-09-26 18:23:53 +00:00
parent 432b7b25d9
commit cd6aa62702
3 changed files with 28 additions and 1 deletions

View file

@ -905,7 +905,7 @@ void GfxMenu::kernelDrawStatus(const char *text, int16 colorPen, int16 colorBack
_paint16->fillRect(_ports->_menuBarRect, 1, colorBack);
_ports->penColor(colorPen);
_ports->moveTo(0, 1);
_text16->Draw_String(text);
_text16->Draw_Status(text);
_paint16->bitsShow(_ports->_menuBarRect);
_ports->setPort(oldPort);
}