mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-26 11:46:54 +00:00
Skip speech name in subtitles.
svn-id: r15018
This commit is contained in:
parent
3b9def962c
commit
175ef8f1cd
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user