aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes/scene27.cpp
diff options
context:
space:
mode:
authorColin Snover2017-11-14 12:56:01 -0600
committerEugene Sandulenko2017-11-18 22:35:12 +0100
commit8e8932f38d61789c76fd03a4a01e3cb74d3dc52d (patch)
tree53ecdd07e0133709d5b8e4ae6bb22c1ef0e3debd /engines/fullpipe/scenes/scene27.cpp
parent5c89c39325f271a5ef4dcb55fbc013b3858791d5 (diff)
downloadscummvm-rg350-8e8932f38d61789c76fd03a4a01e3cb74d3dc52d.tar.gz
scummvm-rg350-8e8932f38d61789c76fd03a4a01e3cb74d3dc52d.tar.bz2
scummvm-rg350-8e8932f38d61789c76fd03a4a01e3cb74d3dc52d.zip
FULLPIPE: Remove unnecessary and illegal C-style casts
Diffstat (limited to 'engines/fullpipe/scenes/scene27.cpp')
-rw-r--r--engines/fullpipe/scenes/scene27.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene27.cpp b/engines/fullpipe/scenes/scene27.cpp
index 7a9a25d563..171cd6d616 100644
--- a/engines/fullpipe/scenes/scene27.cpp
+++ b/engines/fullpipe/scenes/scene27.cpp
@@ -235,7 +235,7 @@ void sceneHandler27_startBat(StaticANIObject *bat) {
newbat->currX = newbat->powerCos + (double)g_fp->_aniMan->_ox + 42.0;
newbat->currY = newbat->powerSin + (double)g_fp->_aniMan->_oy + 58.0;
- bat->_statics = (Statics *)bat->_staticsList[0];
+ bat->_statics = bat->_staticsList[0];
bat->setOXY((int)newbat->currX, (int)newbat->currY);
bat->_flags |= 4;