From e389bcf497391cf4cde7d7b7a6f4023877205735 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 20 Feb 2006 16:51:30 +0000 Subject: Replaced _gameId, _version, _heversion, _features, _midi, _platform with a simple ScummGameSettings instance: _game svn-id: r20795 --- engines/scumm/smush/smush_player.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'engines/scumm/smush/smush_player.cpp') diff --git a/engines/scumm/smush/smush_player.cpp b/engines/scumm/smush/smush_player.cpp index 926e7f9f87..89fe8998d7 100644 --- a/engines/scumm/smush/smush_player.cpp +++ b/engines/scumm/smush/smush_player.cpp @@ -434,7 +434,7 @@ void SmushPlayer::handleIACT(Chunk &b) { int32 size = b.getDword(); int32 bsize = b.getSize() - 18; - if (_vm->_gameId != GID_CMI) { + if (_vm->_game.id != GID_CMI) { int32 track = track_id; if (track_flags == 1) { track = track_id + 100; @@ -568,7 +568,7 @@ void SmushPlayer::handleTextResource(Chunk &b) { } byte transBuf[512]; - if (_vm->_gameId == GID_CMI) { + if (_vm->_game.id == GID_CMI) { _vm->translateText((const byte *)str - 1, transBuf); while (*str++ != '/') ; @@ -646,7 +646,7 @@ void SmushPlayer::handleTextResource(Chunk &b) { assert(sf != NULL); sf->setColor(color); - if (_vm->_gameId == GID_CMI && string2[0] != 0) { + if (_vm->_game.id == GID_CMI && string2[0] != 0) { str = string2; } @@ -1034,13 +1034,13 @@ void SmushPlayer::setupAnim(const char *file) { char file_font[11]; if (_insanity) { - if (!((_vm->_features & GF_DEMO) && (_vm->_platform == Common::kPlatformPC))) + if (!((_vm->_game.features & GF_DEMO) && (_vm->_game.platform == Common::kPlatformPC))) readString("mineroad.trs"); } else readString(file); - if (_vm->_gameId == GID_FT) { - if (!((_vm->_features & GF_DEMO) && (_vm->_platform == Common::kPlatformPC))) { + if (_vm->_game.id == GID_FT) { + if (!((_vm->_game.features & GF_DEMO) && (_vm->_game.platform == Common::kPlatformPC))) { _sf[0] = new SmushFont(_vm, true, false); _sf[1] = new SmushFont(_vm, true, false); _sf[2] = new SmushFont(_vm, true, false); @@ -1050,17 +1050,17 @@ void SmushPlayer::setupAnim(const char *file) { _sf[2]->loadFont("titlfnt.nut"); _sf[3]->loadFont("specfnt.nut"); } - } else if (_vm->_gameId == GID_DIG) { - if (!(_vm->_features & GF_DEMO)) { + } else if (_vm->_game.id == GID_DIG) { + if (!(_vm->_game.features & GF_DEMO)) { for (i = 0; i < 4; i++) { sprintf(file_font, "font%d.nut", i); _sf[i] = new SmushFont(_vm, i != 0, false); _sf[i]->loadFont(file_font); } } - } else if (_vm->_gameId == GID_CMI) { + } else if (_vm->_game.id == GID_CMI) { for (i = 0; i < 5; i++) { - if ((_vm->_features & GF_DEMO) && (i == 4)) + if ((_vm->_game.features & GF_DEMO) && (i == 4)) break; sprintf(file_font, "font%d.nut", i); _sf[i] = new SmushFont(_vm, false, true); -- cgit v1.2.3