diff options
author | Paul Gilbert | 2016-11-30 20:55:52 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-11-30 20:55:52 -0500 |
commit | 57ae998b8ff4ee61fd568d11fe6ae79d5b8fef75 (patch) | |
tree | 0408e6b469cf5bd28901ab20cc501dc85a06f5d4 /engines/titanic/carry | |
parent | bb28315ebb48c4aaa362be57c748ccac17e5c696 (diff) | |
download | scummvm-rg350-57ae998b8ff4ee61fd568d11fe6ae79d5b8fef75.tar.gz scummvm-rg350-57ae998b8ff4ee61fd568d11fe6ae79d5b8fef75.tar.bz2 scummvm-rg350-57ae998b8ff4ee61fd568d11fe6ae79d5b8fef75.zip |
TITANIC: Field renamings in CTelevision
Diffstat (limited to 'engines/titanic/carry')
-rw-r--r-- | engines/titanic/carry/eye.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/carry/eye.cpp b/engines/titanic/carry/eye.cpp index 400df2fdc8..20e4ef3eac 100644 --- a/engines/titanic/carry/eye.cpp +++ b/engines/titanic/carry/eye.cpp @@ -121,7 +121,7 @@ bool CEye::ActMsg(CActMsg *msg) { bool CEye::PETGainedObjectMsg(CPETGainedObjectMsg *msg) { if (isEquals("Eye1")) - CTelevision::_v5 = 0; + CTelevision::_channel4Glyph = false; return CHeadPiece::PETGainedObjectMsg(msg); } @@ -129,9 +129,9 @@ bool CEye::PETGainedObjectMsg(CPETGainedObjectMsg *msg) { bool CEye::PassOnDragStartMsg(CPassOnDragStartMsg *msg) { setVisible(true); if (_eyeFlag) - CTelevision::_v6 = 0; + CTelevision::_eyeFlag = false; else if (isEquals("Eye1")) - CTelevision::_v5 = 0; + CTelevision::_channel4Glyph = false; return CHeadPiece::PassOnDragStartMsg(msg); } |