diff options
| author | D G Turner | 2012-12-04 18:08:01 +0000 |
|---|---|---|
| committer | D G Turner | 2012-12-04 18:08:01 +0000 |
| commit | dd50e98309c1f8e8bb3aaf571a09437c994a60e9 (patch) | |
| tree | 53d2ef7a1285e0d30b9a76990f083f8512e672c8 | |
| parent | da971e38a565a52af92c4d419546820c8af9955b (diff) | |
| download | scummvm-rg350-dd50e98309c1f8e8bb3aaf571a09437c994a60e9.tar.gz scummvm-rg350-dd50e98309c1f8e8bb3aaf571a09437c994a60e9.tar.bz2 scummvm-rg350-dd50e98309c1f8e8bb3aaf571a09437c994a60e9.zip | |
CRUISE: Correct missing comma and extra value in Spanish font table.
The correction in 6046b8f1348a9a50ca09a257b5781a8ca2970d2d was not quite
correct as this was caused by a missing comma. This didn't cause a
compilation error as the code was still valid, just incorrect
i.e. (0x80<newline>-1, gaves 0x7f).
This fixes bug #3568616 - "CRUISE: Cruise for a Corpse Spanish -
Incorrect character".
| -rw-r--r-- | engines/cruise/staticres.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cruise/staticres.cpp b/engines/cruise/staticres.cpp index a3fc4f884b..08ff4d7548 100644 --- a/engines/cruise/staticres.cpp +++ b/engines/cruise/staticres.cpp @@ -177,9 +177,9 @@ const int16 spanish_fontCharacterTable[256] = { 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - 0x72, 0x80 + 0x72, 0x80, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0x7f, 0x79, 0x7b, 0x81, 0x82, 0x83, -1, -1, 0x7d, |
