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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Mon Nov 5 18:10:32 CET 2007


Revision: 29419
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29419&view=rev
Author:   thebluegr
Date:     2007-11-05 09:10:32 -0800 (Mon, 05 Nov 2007)

Log Message:
-----------
Updated the check for the language byte of the JAS Version String to be 'g' for the Greek fan translation and 'R' for the Russian fan translation (according to the Queen engine page in the ScummVM wiki)

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

Modified: scummvm/trunk/engines/queen/resource.cpp
===================================================================
--- scummvm/trunk/engines/queen/resource.cpp	2007-11-05 16:33:40 UTC (rev 29418)
+++ scummvm/trunk/engines/queen/resource.cpp	2007-11-05 17:10:32 UTC (rev 29419)
@@ -188,12 +188,18 @@
 	case 'G':
 		ver->language = Common::DE_DEU;
 		break;
+	case 'g':
+		ver->language = Common::GR_GRE;
+		break;
 	case 'F':
 		ver->language = Common::FR_FRA;
 		break;
 	case 'I':
 		ver->language = Common::IT_ITA;
 		break;
+	case 'R':
+		ver->language = Common::RU_RUS;
+		break;
 	case 'S':
 		ver->language = Common::ES_ESP;
 		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