diff options
-rw-r--r-- | engines/scumm/string.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index b2fb722395..480e18e514 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -1043,6 +1043,10 @@ int ScummEngine::convertMessageToString(const byte *msg, byte *dst, int dstSize) *dst++ = 0x3E; *dst++ = 0x2A; continue; + // Code for " character + } else if (chr == 0x19) { + *dst++ = 0x2F; + continue; } } |