aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorTravis Howell2009-12-02 03:55:06 +0000
committerTravis Howell2009-12-02 03:55:06 +0000
commit6ad031f74370d9406cd24b97ef13ec8ec71b0245 (patch)
tree29b0154c290f92f63ad5d00b42a59f00e162070f /engines/scumm
parent5bf7b71c0f2178bced8622ac3ee7a30b4b28bfb5 (diff)
downloadscummvm-rg350-6ad031f74370d9406cd24b97ef13ec8ec71b0245.tar.gz
scummvm-rg350-6ad031f74370d9406cd24b97ef13ec8ec71b0245.tar.bz2
scummvm-rg350-6ad031f74370d9406cd24b97ef13ec8ec71b0245.zip
Add sanguine's patch for bug #2905463 - Loom PCE: missing characters in US font.
svn-id: r46238
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/string.cpp4
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;
}
}