[Scummvm-cvs-logs] SF.net SVN: scummvm:[36102] scummvm/branches/branch-0-13-0/engines/saga/ font.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Tue Jan 27 18:29:40 CET 2009
Revision: 36102
http://scummvm.svn.sourceforge.net/scummvm/?rev=36102&view=rev
Author: thebluegr
Date: 2009-01-27 17:29:40 +0000 (Tue, 27 Jan 2009)
Log Message:
-----------
(backport) Fixed bug #2538838 - "Wrong accented char. in italian fan version [Regression]"
Modified Paths:
--------------
scummvm/branches/branch-0-13-0/engines/saga/font.cpp
Modified: scummvm/branches/branch-0-13-0/engines/saga/font.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/saga/font.cpp 2009-01-27 17:27:51 UTC (rev 36101)
+++ scummvm/branches/branch-0-13-0/engines/saga/font.cpp 2009-01-27 17:29:40 UTC (rev 36102)
@@ -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