[Scummvm-cvs-logs] SF.net SVN: scummvm:[36101] scummvm/trunk/engines/saga/font.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Jan 27 18:27:51 CET 2009


Revision: 36101
          http://scummvm.svn.sourceforge.net/scummvm/?rev=36101&view=rev
Author:   thebluegr
Date:     2009-01-27 17:27:51 +0000 (Tue, 27 Jan 2009)

Log Message:
-----------
Fixed bug #2538838 - "Wrong accented char. in italian fan version [Regression]"

Modified Paths:
--------------
    scummvm/trunk/engines/saga/font.cpp

Modified: scummvm/trunk/engines/saga/font.cpp
===================================================================
--- scummvm/trunk/engines/saga/font.cpp	2009-01-27 17:08:09 UTC (rev 36100)
+++ scummvm/trunk/engines/saga/font.cpp	2009-01-27 17:27:51 UTC (rev 36101)
@@ -342,7 +342,10 @@
 			// It doesn't make any difference for the English version of IHNM.
 			// Fixes bug #1796045: "IHNM: Spanish font wrong".
 			if (!(flags & kFontDontmap) && _vm->getGameId() == GID_ITE) {
-				c_code = translateChar(c_code);
+				// Don't do any special font mapping for the Italian fan
+				// translation of ITE
+				if (_vm->getLanguage() != Common::IT_ITA)
+					c_code = translateChar(c_code);
 			}
 		} else if (_fontMapping == 1) {
 			// Force font mapping


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