Skip to content

Commit

Permalink
TITANIC: Fix Arm placement when placed on gondolier sliders
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Feb 19, 2017
1 parent a30d74a commit 61fe1a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engines/titanic/carry/arm.cpp
Expand Up @@ -87,7 +87,7 @@ bool CArm::PuzzleSolvedMsg(CPuzzleSolvedMsg *msg) {
}

bool CArm::TranslateObjectMsg(CTranslateObjectMsg *msg) {
Point newPos(_bounds.left - msg->_delta.x, _bounds.top - msg->_delta.y);
Point newPos(_bounds.left + msg->_delta.x, _bounds.top + msg->_delta.y);
setPosition(newPos);
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion engines/titanic/support/files_manager.cpp
Expand Up @@ -106,7 +106,7 @@ void CFilesManager::loadDrive() {
}

void CFilesManager::insertCD(CScreenManager *screenManager) {
// We not support running game directly from the original CDs,
// We don't support running the game directly from the original CDs,
// so this method can remain stubbed
}

Expand Down

0 comments on commit 61fe1a0

Please sign in to comment.