diff options
author | richiesams | 2013-09-02 18:59:42 -0500 |
---|---|---|
committer | richiesams | 2013-09-02 18:59:42 -0500 |
commit | a76f852c385576a84f613489417d71b3ec49b2c6 (patch) | |
tree | 3f7f52be23d789149482989eede672f7c8e188c6 /engines/kyra/text_rpg.cpp | |
parent | c3fcff96124190e847e714fbed23c60c1785c169 (diff) | |
parent | 023783907fa21ec3ac38364ae44d55c813617e27 (diff) | |
download | scummvm-rg350-a76f852c385576a84f613489417d71b3ec49b2c6.tar.gz scummvm-rg350-a76f852c385576a84f613489417d71b3ec49b2c6.tar.bz2 scummvm-rg350-a76f852c385576a84f613489417d71b3ec49b2c6.zip |
Merge branch 'master' into zvision
Diffstat (limited to 'engines/kyra/text_rpg.cpp')
-rw-r--r-- | engines/kyra/text_rpg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/text_rpg.cpp b/engines/kyra/text_rpg.cpp index a19d678e35..24c523c856 100644 --- a/engines/kyra/text_rpg.cpp +++ b/engines/kyra/text_rpg.cpp @@ -129,7 +129,7 @@ void TextDisplayer_rpg::displayText(char *str, ...) { uint16 charsPerLine = (sd->w << 3) / (_screen->getFontWidth() + _screen->_charWidth); while (c) { - char a = tolower(_ctrl[1]); + char a = tolower((unsigned char)_ctrl[1]); if (!_tempString2 && c == '%') { if (a == 'd') { |