aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-08-14 21:11:12 +0300
committerEugene Sandulenko2013-09-06 14:51:14 +0300
commit4db2d7e21b6729b04e1760af302a1acdd3bd4ae4 (patch)
tree93fdac341329bc01bf20bc264142272e1323ac17 /engines/fullpipe/scenes.cpp
parentfce8c0f5952533b592de21205274f5cf9347a3b1 (diff)
downloadscummvm-rg350-4db2d7e21b6729b04e1760af302a1acdd3bd4ae4.tar.gz
scummvm-rg350-4db2d7e21b6729b04e1760af302a1acdd3bd4ae4.tar.bz2
scummvm-rg350-4db2d7e21b6729b04e1760af302a1acdd3bd4ae4.zip
FULLPIPE: Fix crash
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 f3991e234b..b6c05afb9d 100644
--- a/engines/fullpipe/scenes.cpp
+++ b/engines/fullpipe/scenes.cpp
@@ -140,7 +140,7 @@ bool FullpipeEngine::sceneSwitcher(EntranceInfo *entrance) {
scene->setPictureObjectsFlag4();
for (CPtrList::iterator s = scene->_staticANIObjectList1.begin(); s != scene->_staticANIObjectList1.end(); ++s) {
- StaticANIObject *o = (StaticANIObject *)s;
+ StaticANIObject *o = (StaticANIObject *)*s;
o->setFlags(o->_field_6 & 0xFE7F);
}