diff options
author | Paul Gilbert | 2016-11-30 21:04:57 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-11-30 21:04:57 -0500 |
commit | e8f8a67b57cdb6bf39e4781f836e15231c38a749 (patch) | |
tree | f6d766f3db00a82c34ee717150b34d248f095927 /engines/titanic/game | |
parent | 57ae998b8ff4ee61fd568d11fe6ae79d5b8fef75 (diff) | |
download | scummvm-rg350-e8f8a67b57cdb6bf39e4781f836e15231c38a749.tar.gz scummvm-rg350-e8f8a67b57cdb6bf39e4781f836e15231c38a749.tar.bz2 scummvm-rg350-e8f8a67b57cdb6bf39e4781f836e15231c38a749.zip |
TITANIC: Fix down channel remote button for television
Diffstat (limited to 'engines/titanic/game')
-rw-r--r-- | engines/titanic/game/television.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/titanic/game/television.cpp b/engines/titanic/game/television.cpp index 339c1d9507..081112e9e3 100644 --- a/engines/titanic/game/television.cpp +++ b/engines/titanic/game/television.cpp @@ -173,7 +173,6 @@ bool CTelevision::PETDownMsg(CPETDownMsg *msg) { if (--_channelNum < 1) _channelNum += _channelsCount; - _channelNum = (_channelNum % _channelsCount) - 1; stopMovie(); playMovie(START_FRAMES[_channelNum], END_FRAMES[_channelNum], MOVIE_NOTIFY_OBJECT); } |