diff options
| author | Eugene Sandulenko | 2013-09-09 21:04:42 +0300 | 
|---|---|---|
| committer | Eugene Sandulenko | 2013-09-09 21:04:42 +0300 | 
| commit | 6ca4b7d5146d282ff3d41efa70f92cfe877beafc (patch) | |
| tree | e542696485cf122a63dc183d3e06f140c2cf5347 | |
| parent | 3cce3f9a91bdcab5ca0335db9f2f0a3625195b19 (diff) | |
| download | scummvm-rg350-6ca4b7d5146d282ff3d41efa70f92cfe877beafc.tar.gz scummvm-rg350-6ca4b7d5146d282ff3d41efa70f92cfe877beafc.tar.bz2 scummvm-rg350-6ca4b7d5146d282ff3d41efa70f92cfe877beafc.zip | |
FULLPIPE: Fix logical error. CID 1086778
| -rw-r--r-- | engines/fullpipe/interaction.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/fullpipe/interaction.cpp b/engines/fullpipe/interaction.cpp index cdf39d29ae..270f5b5a87 100644 --- a/engines/fullpipe/interaction.cpp +++ b/engines/fullpipe/interaction.cpp @@ -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; | 
