aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorColin Snover2017-11-12 10:16:57 -0600
committerEugene Sandulenko2017-11-18 22:35:12 +0100
commit136223026ecb4569bbd425ed586eb7de42979c9f (patch)
tree5c816ad3b6d838ec5f01a9246fbd8a009e0ea8dd /engines
parent72a42927279a8b740cd0bb5a8053def4a465f2dd (diff)
downloadscummvm-rg350-136223026ecb4569bbd425ed586eb7de42979c9f.tar.gz
scummvm-rg350-136223026ecb4569bbd425ed586eb7de42979c9f.tar.bz2
scummvm-rg350-136223026ecb4569bbd425ed586eb7de42979c9f.zip
FULLPIPE: Remove illegal C-style cast to incompatible type
Diffstat (limited to 'engines')
-rw-r--r--engines/fullpipe/statics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index 993e776c77..21b9ba89a6 100644
--- a/engines/fullpipe/statics.cpp
+++ b/engines/fullpipe/statics.cpp
@@ -1954,7 +1954,7 @@ void Movement::loadPixelData() {
mov = mov->_currMovement;
for (uint i = 0; i < mov->_dynamicPhases.size(); i++) {
- if ((Statics *)mov->_dynamicPhases[i] != mov->_staticsObj2 || !(mov->_staticsObj2->_staticsId & 0x4000))
+ if (mov->_dynamicPhases[i] != mov->_staticsObj2 || !(mov->_staticsObj2->_staticsId & 0x4000))
mov->_dynamicPhases[i]->getPixelData();
}