diff options
author | Alyssa Milburn | 2011-01-21 19:45:08 +0000 |
---|---|---|
committer | Alyssa Milburn | 2011-01-21 19:45:08 +0000 |
commit | 0c797cf359c0191ee78f0fbcf391af87059c017c (patch) | |
tree | 05f27c68bd2442967ef623dcac40c3987dab90e1 /engines | |
parent | 74f8462a7bc61f85614e3e024df6a7f356cbbc43 (diff) | |
download | scummvm-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
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/cstime_view.cpp | 2 |
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); } |