aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/sgt/chest_of_drawers.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-11-12 21:59:15 -0500
committerPaul Gilbert2016-11-12 21:59:15 -0500
commit68132bd678f1191757ef817b02d3063b072ca496 (patch)
treef3852e65e7e3d2289d709f2feba26d26482c89d3 /engines/titanic/game/sgt/chest_of_drawers.cpp
parent3f108f15755e7d5512f26de27bb299cbe26a542c (diff)
downloadscummvm-rg350-68132bd678f1191757ef817b02d3063b072ca496.tar.gz
scummvm-rg350-68132bd678f1191757ef817b02d3063b072ca496.tar.bz2
scummvm-rg350-68132bd678f1191757ef817b02d3063b072ca496.zip
TITANIC: Renamings for SGT state room object fields
Diffstat (limited to 'engines/titanic/game/sgt/chest_of_drawers.cpp')
-rw-r--r--engines/titanic/game/sgt/chest_of_drawers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/game/sgt/chest_of_drawers.cpp b/engines/titanic/game/sgt/chest_of_drawers.cpp
index 2db26addf5..153a358403 100644
--- a/engines/titanic/game/sgt/chest_of_drawers.cpp
+++ b/engines/titanic/game/sgt/chest_of_drawers.cpp
@@ -42,7 +42,7 @@ void CChestOfDrawers::load(SimpleFile *file) {
bool CChestOfDrawers::TurnOn(CTurnOn *msg) {
if (_statics->_v6 == "Closed" && _statics->_v5 == "Open") {
- _fieldE0 = false;
+ _isClosed = false;
_statics->_v6 = "Open";
_startFrame = 1;
_endFrame = 14;
@@ -57,7 +57,7 @@ bool CChestOfDrawers::TurnOff(CTurnOff *msg) {
CVisibleMsg visibleMsg;
visibleMsg.execute("Drawer");
_statics->_v6 = "Closed";
- _fieldE0 = true;
+ _isClosed = true;
_startFrame = 14;
_endFrame = 27;