[Scummvm-cvs-logs] scummvm master -> 8d07a00f39fc80845911211d488eabf899c94f1a
m-kiewitz
m_kiewitz at users.sourceforge.net
Sun Jun 14 02:27:27 CEST 2015
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
8d07a00f39 SHERLOCK: font class char 0xE1 treatment -> 135
Commit: 8d07a00f39fc80845911211d488eabf899c94f1a
https://github.com/scummvm/scummvm/commit/8d07a00f39fc80845911211d488eabf899c94f1a
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2015-06-14T02:27:23+02:00
Commit Message:
SHERLOCK: font class char 0xE1 treatment -> 135
instead of 136. confirmed via disassembly.
happens in German version, when talking to kid in 2nd room
Changed paths:
engines/sherlock/fonts.cpp
diff --git a/engines/sherlock/fonts.cpp b/engines/sherlock/fonts.cpp
index c0a6d45..974debc 100644
--- a/engines/sherlock/fonts.cpp
+++ b/engines/sherlock/fonts.cpp
@@ -89,7 +89,9 @@ inline byte Fonts::translateChar(byte c) {
case ' ':
return 0; // translate to first actual character
case 225:
- return 136; // special handling for 0xE1
+ // This was done in the German interpreter
+ // happens when talking to the kid in the 2nd room
+ return 135; // special handling for 0xE1
default:
if (c >= 0x80) { // German SH1 version did this
c--;
More information about the Scummvm-git-logs
mailing list