aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/myst_areas.cpp
diff options
context:
space:
mode:
authorBastien Bouclet2010-11-29 20:59:17 +0000
committerBastien Bouclet2010-11-29 20:59:17 +0000
commited59b28d0bd8a7eb1f30357d48bbd26cb1b307ff (patch)
tree8fa4bc87657cdb6ef4ad2799a2b8d6ee2da0c7b3 /engines/mohawk/myst_areas.cpp
parentfcc1dd6749ea33bf8c9fd6e15a004bfeb7b3a47e (diff)
downloadscummvm-rg350-ed59b28d0bd8a7eb1f30357d48bbd26cb1b307ff.tar.gz
scummvm-rg350-ed59b28d0bd8a7eb1f30357d48bbd26cb1b307ff.tar.bz2
scummvm-rg350-ed59b28d0bd8a7eb1f30357d48bbd26cb1b307ff.zip
MOHAWK: Do not always update the screen after a card change. Necessary for "animated card changes" to work.
svn-id: r54630
Diffstat (limited to 'engines/mohawk/myst_areas.cpp')
-rw-r--r--engines/mohawk/myst_areas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/myst_areas.cpp b/engines/mohawk/myst_areas.cpp
index 37e96beb90..d04bb3a771 100644
--- a/engines/mohawk/myst_areas.cpp
+++ b/engines/mohawk/myst_areas.cpp
@@ -70,7 +70,7 @@ MystResource::~MystResource() {
void MystResource::handleMouseUp(Common::Point *mouse) {
if (_dest != 0)
- _vm->changeToCard(_dest);
+ _vm->changeToCard(_dest, true);
else
warning("Movement type resource with null destination at position (%d, %d), (%d, %d)", _rect.left, _rect.top, _rect.right, _rect.bottom);
}