aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/base-costume.cpp
diff options
context:
space:
mode:
authorMax Horn2006-02-20 16:51:30 +0000
committerMax Horn2006-02-20 16:51:30 +0000
commite389bcf497391cf4cde7d7b7a6f4023877205735 (patch)
treeb8314b1ad8bc19117c37df4d4ce27d9cce92a442 /engines/scumm/base-costume.cpp
parenta6e5f6fd2cdb574e09fb3bd120b1e8efa034f0cb (diff)
downloadscummvm-rg350-e389bcf497391cf4cde7d7b7a6f4023877205735.tar.gz
scummvm-rg350-e389bcf497391cf4cde7d7b7a6f4023877205735.tar.bz2
scummvm-rg350-e389bcf497391cf4cde7d7b7a6f4023877205735.zip
Replaced _gameId, _version, _heversion, _features, _midi, _platform with a simple ScummGameSettings instance: _game
svn-id: r20795
Diffstat (limited to 'engines/scumm/base-costume.cpp')
-rw-r--r--engines/scumm/base-costume.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/base-costume.cpp b/engines/scumm/base-costume.cpp
index e93b5b80cd..913b462574 100644
--- a/engines/scumm/base-costume.cpp
+++ b/engines/scumm/base-costume.cpp
@@ -43,10 +43,10 @@ byte BaseCostumeRenderer::drawCostume(const VirtScreen &vs, int numStrips, const
_numStrips = numStrips;
- if (_vm->_version == 1) {
+ if (_vm->_game.version == 1) {
_xmove = 0;
_ymove = 0;
- } else if (_vm->_features & GF_OLD_BUNDLE) {
+ } else if (_vm->_game.features & GF_OLD_BUNDLE) {
_xmove = -72;
_ymove = -100;
} else {