From b6ad2b00350dffbc4051f3d5eb27b9ce5cb198c4 Mon Sep 17 00:00:00 2001 From: Benjamin Haisch Date: Fri, 27 Jun 2008 09:57:38 +0000 Subject: - Fixed umlauts in printText - Don't exit when a pmv video couldn't be found svn-id: r32817 --- engines/made/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/made/screen.cpp') diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp index cecd0c8968..1d81793448 100644 --- a/engines/made/screen.cpp +++ b/engines/made/screen.cpp @@ -688,7 +688,7 @@ void Screen::printText(const char *text) { for (int textPos = 0; textPos < textLen; textPos++) { - uint c = text[textPos]; + uint c = ((byte*)text)[textPos]; int charWidth = _font->getCharWidth(c); if (c == 9) { -- cgit v1.2.3