Skip speech name in subtitles.

svn-id: r15018
This commit is contained in:
Travis Howell 2004-09-12 06:00:56 +00:00
parent 3b9def962c
commit 175ef8f1cd

View File

@ -503,6 +503,11 @@ int ScummEngine::addMessageToStack(const byte *msg, byte *dst, int dstSize) {
while (1) {
chr = src[num++];
if (_heversion >= 99 && chr == '[') {
while (src[num++] != ']');
continue;
}
if (chr == 0)
break;
if (chr == 0xFF) {