aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Milburn2011-01-21 19:45:08 +0000
committerAlyssa Milburn2011-01-21 19:45:08 +0000
commit0c797cf359c0191ee78f0fbcf391af87059c017c (patch)
tree05f27c68bd2442967ef623dcac40c3987dab90e1
parent74f8462a7bc61f85614e3e024df6a7f356cbbc43 (diff)
downloadscummvm-rg350-0c797cf359c0191ee78f0fbcf391af87059c017c.tar.gz
scummvm-rg350-0c797cf359c0191ee78f0fbcf391af87059c017c.tar.bz2
scummvm-rg350-0c797cf359c0191ee78f0fbcf391af87059c017c.zip
MOHAWK: Use the provided drag flags when dropping a feature.
svn-id: r55387
-rw-r--r--engines/mohawk/cstime_view.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/cstime_view.cpp b/engines/mohawk/cstime_view.cpp
index bf8305d3ee..cef5ef48aa 100644
--- a/engines/mohawk/cstime_view.cpp
+++ b/engines/mohawk/cstime_view.cpp
@@ -173,7 +173,7 @@ void CSTimeView::dragFeature(NewFeature *feature, Common::Point pos, uint mode,
if (mode == 2) {
if (feature->_dragFlags & 0x800000) {
- feature->_dragFlags |= 0x8000;
+ feature->_dragFlags = flags | 0x8000;
if (!(flags & 1))
(_currentModule->*(feature->_dropProc))(feature);
}