Skip to content

Commit

Permalink
FULLPIPE: Fix logical error. CID 1086778
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Sep 9, 2013
1 parent 3cce3f9 commit 6ca4b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/fullpipe/interaction.cpp
Expand Up @@ -424,7 +424,7 @@ bool CInteraction::canInteract(GameObject *obj1, GameObject *obj2, int invId) {
return false;

if ((_flags & 8) && (_flags & 1)) {
if (!obj2->_objtype != kObjTypeStaticANIObject)
if (obj2->_objtype != kObjTypeStaticANIObject)
return false;

StaticANIObject *st = (StaticANIObject *)obj2;
Expand Down

0 comments on commit 6ca4b7d

Please sign in to comment.