[Scummvm-cvs-logs] SF.net SVN: scummvm: [27152] scummvm/trunk/engines/agos/charset.cpp

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Thu Jun 7 02:24:23 CEST 2007


Revision: 27152
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27152&view=rev
Author:   Kirben
Date:     2007-06-06 17:24:23 -0700 (Wed, 06 Jun 2007)

Log Message:
-----------
Add case for font data in Italian versions of earlier games too.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/charset.cpp

Modified: scummvm/trunk/engines/agos/charset.cpp
===================================================================
--- scummvm/trunk/engines/agos/charset.cpp	2007-06-06 23:48:45 UTC (rev 27151)
+++ scummvm/trunk/engines/agos/charset.cpp	2007-06-07 00:24:23 UTC (rev 27152)
@@ -2086,11 +2086,14 @@
 		h = 8;
 		w = 6;
 
-		// TODO: Add font tables for German and Spanish
+		// TODO: Add font tables for German, Italian and Spanish
 		switch (_language) {
 		case Common::ES_ESP:
 			src = english_commonFont + (chr - 0x20) * 8;
 			break;
+		case Common::IT_ITA:
+			src = english_commonFont + (chr - 0x20) * 8;
+			break;
 		case Common::FR_FRA:
 			src = french_commonFont + (chr - 0x20) * 8;
 			break;


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