From 6ad031f74370d9406cd24b97ef13ec8ec71b0245 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Wed, 2 Dec 2009 03:55:06 +0000 Subject: Add sanguine's patch for bug #2905463 - Loom PCE: missing characters in US font. svn-id: r46238 --- engines/scumm/string.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'engines/scumm/string.cpp') 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; } } -- cgit v1.2.3