aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-09-18 19:28:44 +0400
committerEugene Sandulenko2013-09-18 19:39:54 +0400
commit655054fb37eb53b376f63d8cf8839c7bd4550682 (patch)
tree013fde7ba5be1945d804add19ab29d21d0cf89c4 /engines/fullpipe/scenes.cpp
parentf40787dbbfa27242d28de2a68b734874ad2a08f4 (diff)
downloadscummvm-rg350-655054fb37eb53b376f63d8cf8839c7bd4550682.tar.gz
scummvm-rg350-655054fb37eb53b376f63d8cf8839c7bd4550682.tar.bz2
scummvm-rg350-655054fb37eb53b376f63d8cf8839c7bd4550682.zip
FULLPIPE: CObjstateCommand -> ObjStateCommand
Diffstat (limited to 'engines/fullpipe/scenes.cpp')
-rw-r--r--engines/fullpipe/scenes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes.cpp b/engines/fullpipe/scenes.cpp
index 1ac92c3c10..8aed9e7f48 100644
--- a/engines/fullpipe/scenes.cpp
+++ b/engines/fullpipe/scenes.cpp
@@ -1076,7 +1076,7 @@ int global_messageHandler3(ExCommand *cmd) {
return doSomeAnimation2(cmd->_parentId, cmd->_keyCode);
case 63:
if (cmd->_objtype == kObjTypeObjstateCommand) {
- CObjstateCommand *c = (CObjstateCommand *)cmd;
+ ObjstateCommand *c = (ObjstateCommand *)cmd;
result = 1;
g_fullpipe->setObjectState(c->_objCommandName, c->_value);
}