Skip to content

Commit

Permalink
LOL: fix bug #3614957 (LOL : Crash when subtitles displayed)
Browse files Browse the repository at this point in the history
  • Loading branch information
athrxx committed Sep 2, 2013
1 parent 18b21c5 commit 0237839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/kyra/text_rpg.cpp
Expand Up @@ -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') {
Expand Down

0 comments on commit 0237839

Please sign in to comment.