[Scummvm-cvs-logs] scummvm master -> dd50e98309c1f8e8bb3aaf571a09437c994a60e9

digitall dgturner at iee.org
Tue Dec 4 19:13:12 CET 2012


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:
dd50e98309 CRUISE: Correct missing comma and extra value in Spanish font table.


Commit: dd50e98309c1f8e8bb3aaf571a09437c994a60e9
    https://github.com/scummvm/scummvm/commit/dd50e98309c1f8e8bb3aaf571a09437c994a60e9
Author: D G Turner (digitall at scummvm.org)
Date: 2012-12-04T10:08:01-08:00

Commit Message:
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".

Changed paths:
    engines/cruise/staticres.cpp



diff --git a/engines/cruise/staticres.cpp b/engines/cruise/staticres.cpp
index a3fc4f8..08ff4d7 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,






More information about the Scummvm-git-logs mailing list