diff options
| -rw-r--r-- | engines/sherlock/scalpel/scalpel_scene.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_scene.cpp b/engines/sherlock/scalpel/scalpel_scene.cpp index 11fb807c3b..3a7c04baee 100644 --- a/engines/sherlock/scalpel/scalpel_scene.cpp +++ b/engines/sherlock/scalpel/scalpel_scene.cpp @@ -741,7 +741,7 @@ int ScalpelScene::findBgShape(const Common::Point &pt) {  	for (int idx = (int)_bgShapes.size() - 1; idx >= 0; --idx) {  		Object &o = _bgShapes[idx];  		if (o._type != INVALID && o._type != NO_SHAPE && o._type != HIDDEN -			&& o._aType <= PERSON) { +				&& o._type != REMOVE && o._aType <= PERSON) {  			if (o.getNewBounds().contains(pt))  				return idx;  		} else if (o._type == NO_SHAPE) {  | 
