[Scummvm-cvs-logs] SF.net SVN: scummvm:[36129] scummvm/trunk/engines/tucker/resource.cpp

cyx at users.sourceforge.net cyx at users.sourceforge.net
Thu Jan 29 22:31:44 CET 2009


Revision: 36129
          http://scummvm.svn.sourceforge.net/scummvm/?rev=36129&view=rev
Author:   cyx
Date:     2009-01-29 21:31:44 +0000 (Thu, 29 Jan 2009)

Log Message:
-----------
restrict charwidth table patch to french version, should fix #2523924

Modified Paths:
--------------
    scummvm/trunk/engines/tucker/resource.cpp

Modified: scummvm/trunk/engines/tucker/resource.cpp
===================================================================
--- scummvm/trunk/engines/tucker/resource.cpp	2009-01-29 17:43:55 UTC (rev 36128)
+++ scummvm/trunk/engines/tucker/resource.cpp	2009-01-29 21:31:44 UTC (rev 36129)
@@ -321,7 +321,9 @@
 		for (int i = 0; i < 256; ++i) {
 			_charWidthTable[i] = t.getNextInteger();
 		}
-		_charWidthTable[225] = 0;
+		if (_gameLang == Common::FR_FRA) {
+			_charWidthTable[225] = 0;
+		}
 	} else {
 		memcpy(_charWidthTable + 32, _charWidthCharset1, 224);
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list