diff options
author | Paul Gilbert | 2017-01-21 19:21:35 -0500 |
---|---|---|
committer | Paul Gilbert | 2017-01-21 19:21:35 -0500 |
commit | ddc08c8fa25245445910c386cdb2bca38314a756 (patch) | |
tree | b7e4167868f9bc9aac960218652e1ac0cfbd242b | |
parent | 2b18e4f787e330cec9df5c43986ba80f7bdc8acd (diff) | |
download | scummvm-rg350-ddc08c8fa25245445910c386cdb2bca38314a756.tar.gz scummvm-rg350-ddc08c8fa25245445910c386cdb2bca38314a756.tar.bz2 scummvm-rg350-ddc08c8fa25245445910c386cdb2bca38314a756.zip |
TITANIC: Fix the throwing TV cutscene
-rw-r--r-- | engines/titanic/game/throw_tv_down_well.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/game/throw_tv_down_well.cpp b/engines/titanic/game/throw_tv_down_well.cpp index 9de028cbde..be61f6e9ab 100644 --- a/engines/titanic/game/throw_tv_down_well.cpp +++ b/engines/titanic/game/throw_tv_down_well.cpp @@ -48,9 +48,9 @@ void CThrowTVDownWell::load(SimpleFile *file) { bool CThrowTVDownWell::ActMsg(CActMsg *msg) { if (msg->_action == "ThrowTVDownWell" && !_flag) { - CString viewName = getFullViewName(); + _viewName = getFullViewName(); lockMouse(); - addTimer(1, 8000, 0); + addTimer(1, 4000, 0); CActMsg actMsg("ThrownTVDownWell"); actMsg.execute("BOWTelevisionMonitor"); |