diff options
-rw-r--r-- | engines/titanic/carry/arm.cpp | 2 | ||||
-rw-r--r-- | engines/titanic/support/files_manager.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/carry/arm.cpp b/engines/titanic/carry/arm.cpp index 129704cb83..23b0710c30 100644 --- a/engines/titanic/carry/arm.cpp +++ b/engines/titanic/carry/arm.cpp @@ -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; } diff --git a/engines/titanic/support/files_manager.cpp b/engines/titanic/support/files_manager.cpp index fc09c5702c..cf706974a7 100644 --- a/engines/titanic/support/files_manager.cpp +++ b/engines/titanic/support/files_manager.cpp @@ -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 } |