mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-29 14:42:26 +00:00
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:
parent
92f54db76c
commit
8d07a00f39
@ -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--;
|
||||
|
Loading…
x
Reference in New Issue
Block a user