aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-23 21:56:33 -0400
committerPaul Gilbert2017-08-23 21:56:33 -0400
commit0411e1cdc58d29e0436498eed9340df769464937 (patch)
tree7649db737b36f1a6441b15e90471a8a66c5c4aa0
parent4aabc56bb37a1564040094d5d8ea03f2f9b1d9fb (diff)
downloadscummvm-rg350-0411e1cdc58d29e0436498eed9340df769464937.tar.gz
scummvm-rg350-0411e1cdc58d29e0436498eed9340df769464937.tar.bz2
scummvm-rg350-0411e1cdc58d29e0436498eed9340df769464937.zip
TITANIC: Fix incorrect cursor after getting nose
-rw-r--r--engines/titanic/core/drop_target.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/core/drop_target.cpp b/engines/titanic/core/drop_target.cpp
index 51e47519ea..fa93b72206 100644
--- a/engines/titanic/core/drop_target.cpp
+++ b/engines/titanic/core/drop_target.cpp
@@ -150,11 +150,11 @@ bool CDropTarget::EnterViewMsg(CEnterViewMsg *msg) {
_cursorId = _dragCursorId;
} else if (_clipName.empty()) {
loadFrame(_dropFrame);
+ _cursorId = _dropCursorId;
} else {
playClip(_clipName, _clipFlags);
+ _cursorId = _dropCursorId;
}
-
- _cursorId = _dropCursorId;
}
return true;