diff options
-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"); |