diff -ur ScummVM-cvs20030208/scummvm/scumm/smush/player.cpp ScummVM-cvs20030208+hack/scummvm/scumm/smush/player.cpp
old
|
new
|
|
486 | 486 | g_scumm->translateText((byte*)str - 1, g_scumm->_transText); |
487 | 487 | while(*str++ != '/'); |
488 | 488 | string2 = (char*)g_scumm->_transText; |
| 489 | |
| 490 | // If string2 contains formatting information there probably |
| 491 | // wasn't any translation for it in the language.tab file. In |
| 492 | // that case, pretend there is no string2. |
| 493 | if (string2[0] == '^') |
| 494 | string2[0] = 0; |
489 | 495 | } |
490 | 496 | |
491 | 497 | while(str[0] == '^') { |