Replaced _gameId, _version, _heversion, _features, _midi, _platform with a simple ScummGameSettings instance: _game

svn-id: r20795
This commit is contained in:
Max Horn 2006-02-20 16:51:30 +00:00
parent a6e5f6fd2c
commit e389bcf497
51 changed files with 1089 additions and 1099 deletions

View file

@ -122,7 +122,7 @@ void ScummEngine_v4::readIndexFile() {
default:
// FIXME: this is a little hack because Indy3 FM-TOWNS has
// 32 extra bytes of unknown meaning appended to 00.LFL
if (!(_gameId == GID_INDY3 && _platform == Common::kPlatformFMTowns))
if (!(_game.id == GID_INDY3 && _game.platform == Common::kPlatformFMTowns))
error("Bad ID %c%c found in directory!", blocktype & 0xFF, blocktype >> 8);
return;
}