Skip to content

Commit

Permalink
TITANIC: Correct cursor after ejecting cylinder in music system
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 25, 2017
1 parent 8512476 commit fe1c3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/titanic/game/restaurant_cylinder_holder.cpp
Expand Up @@ -111,7 +111,7 @@ bool CRestaurantCylinderHolder::MovieEndMsg(CMovieEndMsg *msg) {
} else {
_isOpen = true;
_dropEnabled = false;
_cursorId = findByName("Phonograph Cylinder") ? _dropCursorId : _dragCursorId;
_cursorId = findByName("Phonograph Cylinder", true) ? _dropCursorId : _dragCursorId;
}

CCylinderHolderReadyMsg holderMsg;
Expand Down

0 comments on commit fe1c3a8

Please sign in to comment.