aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2008-06-27 09:57:38 +0000
committerBenjamin Haisch2008-06-27 09:57:38 +0000
commitb6ad2b00350dffbc4051f3d5eb27b9ce5cb198c4 (patch)
tree45a31d184e645b114134d458a197843087fcbcc4 /engines/made/screen.cpp
parent8cd03780f68a8558fd6b816629b0c2e3c9517a41 (diff)
downloadscummvm-rg350-b6ad2b00350dffbc4051f3d5eb27b9ce5cb198c4.tar.gz
scummvm-rg350-b6ad2b00350dffbc4051f3d5eb27b9ce5cb198c4.tar.bz2
scummvm-rg350-b6ad2b00350dffbc4051f3d5eb27b9ce5cb198c4.zip
- Fixed umlauts in printText
- Don't exit when a pmv video couldn't be found svn-id: r32817
Diffstat (limited to 'engines/made/screen.cpp')
-rw-r--r--engines/made/screen.cpp2
1 files changed, 1 insertions, 1 deletions
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) {