diff options
author | Paul Gilbert | 2017-02-19 08:52:22 -0500 |
---|---|---|
committer | Paul Gilbert | 2017-02-19 08:52:22 -0500 |
commit | 61fe1a06adf3c8ab440d76775ab73e07144c28ab (patch) | |
tree | c2b4daaa36d2adc4e99eb837be1cd660740efc0e /engines | |
parent | a30d74a3c9a1fe044b78fc682f4b9fc4f4fec088 (diff) | |
download | scummvm-rg350-61fe1a06adf3c8ab440d76775ab73e07144c28ab.tar.gz scummvm-rg350-61fe1a06adf3c8ab440d76775ab73e07144c28ab.tar.bz2 scummvm-rg350-61fe1a06adf3c8ab440d76775ab73e07144c28ab.zip |
TITANIC: Fix Arm placement when placed on gondolier sliders
Diffstat (limited to 'engines')
-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 } |