diff options
-rw-r--r-- | engines/titanic/core/drop_target.cpp | 4 |
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; |