aboutsummaryrefslogtreecommitdiff
path: root/gob/map.cpp
diff options
context:
space:
mode:
authorSven Hesse2006-01-09 16:10:22 +0000
committerSven Hesse2006-01-09 16:10:22 +0000
commita0349221203458e7a5ab8e78876840296105092a (patch)
tree37ec31712a0a5b14ab1bd986f0ab0b32b3d6b4b9 /gob/map.cpp
parentb99859f22751468f2f2212c880017371fcef8e76 (diff)
downloadscummvm-rg350-a0349221203458e7a5ab8e78876840296105092a.tar.gz
scummvm-rg350-a0349221203458e7a5ab8e78876840296105092a.tar.bz2
scummvm-rg350-a0349221203458e7a5ab8e78876840296105092a.zip
More variable underscoring, that should be all
svn-id: r19957
Diffstat (limited to 'gob/map.cpp')
-rw-r--r--gob/map.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gob/map.cpp b/gob/map.cpp
index 0ae49765be..7ec064f4cb 100644
--- a/gob/map.cpp
+++ b/gob/map.cpp
@@ -743,12 +743,12 @@ void Map::loadMapsInitGobs(void) {
_vm->_goblin->_goblins[i]->xPos, _vm->_goblin->_goblins[i]->yPos, 0);
_vm->_goblin->_goblins[i]->yPos = (_vm->_goblin->_gobPositions[i].y + 1) * 6 -
- (_vm->_scenery->toRedrawBottom - _vm->_scenery->animTop);
+ (_vm->_scenery->_toRedrawBottom - _vm->_scenery->_animTop);
_vm->_goblin->_goblins[i]->xPos = _vm->_goblin->_gobPositions[i].x * 12 -
- (_vm->_scenery->toRedrawLeft - _vm->_scenery->animLeft);
+ (_vm->_scenery->_toRedrawLeft - _vm->_scenery->_animLeft);
- _vm->_goblin->_goblins[i]->order = _vm->_scenery->toRedrawBottom / 24 + 3;
+ _vm->_goblin->_goblins[i]->order = _vm->_scenery->_toRedrawBottom / 24 + 3;
}
_vm->_goblin->_currentGoblin = 0;