Skip to content

Commit

Permalink
TITANIC: Fix incorrect cursor after getting nose
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 24, 2017
1 parent 4aabc56 commit 0411e1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/titanic/core/drop_target.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 0411e1c

Please sign in to comment.