[Scummvm-cvs-logs] SF.net SVN: scummvm:[44157] scummvm/trunk

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Thu Sep 17 15:46:01 CEST 2009


Revision: 44157
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44157&view=rev
Author:   lordhoto
Date:     2009-09-17 13:46:01 +0000 (Thu, 17 Sep 2009)

Log Message:
-----------
- Increase kyra.dat version
- Fix language settings of some game entries

Modified Paths:
--------------
    scummvm/trunk/dists/engine-data/kyra.dat
    scummvm/trunk/engines/kyra/staticres.cpp
    scummvm/trunk/tools/create_kyradat/create_kyradat.cpp
    scummvm/trunk/tools/create_kyradat/games.cpp

Modified: scummvm/trunk/dists/engine-data/kyra.dat
===================================================================
(Binary files differ)

Modified: scummvm/trunk/engines/kyra/staticres.cpp
===================================================================
--- scummvm/trunk/engines/kyra/staticres.cpp	2009-09-17 13:45:29 UTC (rev 44156)
+++ scummvm/trunk/engines/kyra/staticres.cpp	2009-09-17 13:46:01 UTC (rev 44157)
@@ -45,7 +45,7 @@
 
 namespace Kyra {
 
-#define RESFILE_VERSION 55
+#define RESFILE_VERSION 56
 
 namespace {
 bool checkKyraDat(Common::SeekableReadStream *file) {

Modified: scummvm/trunk/tools/create_kyradat/create_kyradat.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/create_kyradat.cpp	2009-09-17 13:45:29 UTC (rev 44156)
+++ scummvm/trunk/tools/create_kyradat/create_kyradat.cpp	2009-09-17 13:46:01 UTC (rev 44157)
@@ -37,7 +37,7 @@
 #include "md5.h"
 
 enum {
-	kKyraDatVersion = 55,
+	kKyraDatVersion = 56,
 	kIndexSize = 12
 };
 
@@ -397,6 +397,8 @@
 		features |= GF_ITALIAN;
 	else if (g->lang == JA_JPN)
 		features |= GF_JAPANESE;
+	else
+		features |= GF_LNGUNK;
 
 	return features;
 }

Modified: scummvm/trunk/tools/create_kyradat/games.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/games.cpp	2009-09-17 13:45:29 UTC (rev 44156)
+++ scummvm/trunk/tools/create_kyradat/games.cpp	2009-09-17 13:46:01 UTC (rev 44157)
@@ -90,7 +90,9 @@
 };
 
 const Game kyra3Games[] = {
-	{ kKyra3, EN_ANY, kPlatformPC, -1, "bf68701eb591d0b72219f314c0d32688" },
+	// DOS CD (multi language version, with no language specific strings)
+	{ kKyra3, UNK_LANG, kPlatformPC, -1, "bf68701eb591d0b72219f314c0d32688" },
+
 	GAME_DUMMY_ENTRY
 };
 
@@ -98,12 +100,12 @@
 	// DOS demo
 	{ kLol, EN_ANY, kPlatformPC, k2DemoLol, "30bb5af87d38adb47d3e6ce06b1cb042" },
 
-	// DOS floppy
-	{ kLol, EN_ANY, kPlatformPC, -1, "6b843869772c1b779e1386be868c15dd" },
+	// DOS floppy (no language specifc strings)
+	{ kLol, DE_DEU, kPlatformPC, -1, "6b843869772c1b779e1386be868c15dd" },
 
-	// DOS CD
-	{ kLol, EN_ANY, kPlatformPC, kTalkieFile1, "9d1778314de80598c0b0d032e2a1a1cf" },
-	{ kLol, EN_ANY, kPlatformPC, kTalkieFile2, "263998ec600afca1cc7b935c473df670" },
+	// DOS CD (multi language version, with no language specific strings)
+	{ kLol, UNK_LANG, kPlatformPC, kTalkieFile1, "9d1778314de80598c0b0d032e2a1a1cf" },
+	{ kLol, UNK_LANG, kPlatformPC, kTalkieFile2, "263998ec600afca1cc7b935c473df670" },
 
 	GAME_DUMMY_ENTRY
 };


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