SHERLOCK: font class char 0xE1 treatment -> 135

instead of 136. confirmed via disassembly.
happens in German version, when talking to kid in 2nd room
This commit is contained in:
Martin Kiewitz 2015-06-14 02:27:23 +02:00
parent 92f54db76c
commit 8d07a00f39

View File

@ -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--;