LOL/PC-98: fixed regression (missing static data for pc98 version)

svn-id: r45927
This commit is contained in:
Florian Kagerer 2009-11-15 21:25:26 +00:00
parent baf42879cb
commit 9a57665abf
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -45,7 +45,7 @@
namespace Kyra {
#define RESFILE_VERSION 60
#define RESFILE_VERSION 61
namespace {
bool checkKyraDat(Common::SeekableReadStream *file) {
@ -1383,7 +1383,7 @@ const char *StaticResource::getFilename(const char *name) {
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";

View File

@ -37,7 +37,7 @@
#include "md5.h"
enum {
kKyraDatVersion = 60,
kKyraDatVersion = 61,
kIndexSize = 12
};