aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/inventory.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/inventory.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/inventory.cpp')
-rw-r--r--engines/fullpipe/inventory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/inventory.cpp b/engines/fullpipe/inventory.cpp
index fd8f73c0b3..5ddf26d06a 100644
--- a/engines/fullpipe/inventory.cpp
+++ b/engines/fullpipe/inventory.cpp
@@ -171,7 +171,7 @@ void Inventory2::removeItem2(Scene *sceneObj, int itemId, int x, int y, int prio
sceneObj->addStaticANIObject(ani, 1);
- ani->_statics = (Statics *)ani->_staticsList[0];
+ ani->_statics = ani->_staticsList[0];
ani->setOXY(x, y);
ani->_priority = priority;
}