[Scummvm-cvs-logs] SF.net SVN: scummvm:[45927] scummvm/trunk
athrxx at users.sourceforge.net
athrxx at users.sourceforge.net
Sun Nov 15 22:25:26 CET 2009
Revision: 45927
http://scummvm.svn.sourceforge.net/scummvm/?rev=45927&view=rev
Author: athrxx
Date: 2009-11-15 21:25:26 +0000 (Sun, 15 Nov 2009)
Log Message:
-----------
LOL/PC-98: fixed regression (missing static data for pc98 version)
Modified Paths:
--------------
scummvm/trunk/dists/engine-data/kyra.dat
scummvm/trunk/engines/kyra/staticres.cpp
scummvm/trunk/tools/create_kyradat/create_kyradat.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-11-15 19:12:46 UTC (rev 45926)
+++ scummvm/trunk/engines/kyra/staticres.cpp 2009-11-15 21:25:26 UTC (rev 45927)
@@ -45,7 +45,7 @@
namespace Kyra {
-#define RESFILE_VERSION 60
+#define RESFILE_VERSION 61
namespace {
bool checkKyraDat(Common::SeekableReadStream *file) {
@@ -1383,7 +1383,7 @@
filename += ".CD";
else if (_vm->gameFlags().isDemo)
filename += ".DEM";
- else if (_vm->gameFlags().platform == Common::kPlatformPC98 && _vm->gameFlags().gameID == GI_KYRA1)
+ else if (_vm->gameFlags().platform == Common::kPlatformPC98 && (_vm->gameFlags().gameID == GI_KYRA1 || _vm->gameFlags().gameID == GI_LOL))
filename += ".98";
else if (_vm->gameFlags().platform == Common::kPlatformFMTowns || _vm->gameFlags().platform == Common::kPlatformPC98)
filename += ".TNS";
Modified: scummvm/trunk/tools/create_kyradat/create_kyradat.cpp
===================================================================
--- scummvm/trunk/tools/create_kyradat/create_kyradat.cpp 2009-11-15 19:12:46 UTC (rev 45926)
+++ scummvm/trunk/tools/create_kyradat/create_kyradat.cpp 2009-11-15 21:25:26 UTC (rev 45927)
@@ -37,7 +37,7 @@
#include "md5.h"
enum {
- kKyraDatVersion = 60,
+ kKyraDatVersion = 61,
kIndexSize = 12
};
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