diff options
author | Paul Gilbert | 2017-08-23 21:56:33 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-23 21:56:33 -0400 |
commit | 0411e1cdc58d29e0436498eed9340df769464937 (patch) | |
tree | 7649db737b36f1a6441b15e90471a8a66c5c4aa0 /engines/titanic | |
parent | 4aabc56bb37a1564040094d5d8ea03f2f9b1d9fb (diff) | |
download | scummvm-rg350-0411e1cdc58d29e0436498eed9340df769464937.tar.gz scummvm-rg350-0411e1cdc58d29e0436498eed9340df769464937.tar.bz2 scummvm-rg350-0411e1cdc58d29e0436498eed9340df769464937.zip |
TITANIC: Fix incorrect cursor after getting nose
Diffstat (limited to 'engines/titanic')
-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; |