mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-24 03:24:50 +00:00
LOL/PC-98: fixed regression (missing static data for pc98 version)
svn-id: r45927
This commit is contained in:
parent
baf42879cb
commit
9a57665abf
Binary file not shown.
@ -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";
|
||||
|
@ -37,7 +37,7 @@
|
||||
#include "md5.h"
|
||||
|
||||
enum {
|
||||
kKyraDatVersion = 60,
|
||||
kKyraDatVersion = 61,
|
||||
kIndexSize = 12
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user