aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2011-11-03 01:03:10 +0000
committerEugene Sandulenko2011-11-03 01:03:10 +0000
commit3da2e8662a236f78c9a4e33d31b6b55810e545f1 (patch)
tree2cec29541b3e15c37a32acd10b324c611357d068
parente1a311a236131b909d29f1e5cc6f5a369682bd07 (diff)
downloadscummvm-rg350-3da2e8662a236f78c9a4e33d31b6b55810e545f1.tar.gz
scummvm-rg350-3da2e8662a236f78c9a4e33d31b6b55810e545f1.tar.bz2
scummvm-rg350-3da2e8662a236f78c9a4e33d31b6b55810e545f1.zip
SAGA: Fix copy/paste error
-rw-r--r--engines/saga/isomap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/isomap.cpp b/engines/saga/isomap.cpp
index e886f0df82..ec6b13f313 100644
--- a/engines/saga/isomap.cpp
+++ b/engines/saga/isomap.cpp
@@ -95,7 +95,7 @@ static const int16 directions[8][2] = {
IsoMap::IsoMap(SagaEngine *vm) : _vm(vm) {
_viewScroll.x = (128 - 8) * 16;
- _viewScroll.x = (128 - 8) * 16 - 64;
+ _viewScroll.y = (128 - 8) * 16 - 64;
_viewDiff = 1;
}