From 2a850d097839765da7bac76110c607508c3628c7 Mon Sep 17 00:00:00 2001 From: Nicola Mettifogo Date: Sun, 20 May 2007 13:47:43 +0000 Subject: Fixed embarrassing - and old as time - mistake preventing some items from being deleted from the screen when picked up. svn-id: r26889 --- engines/parallaction/zone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/parallaction/zone.cpp b/engines/parallaction/zone.cpp index 176df5a9bc..16581e9174 100644 --- a/engines/parallaction/zone.cpp +++ b/engines/parallaction/zone.cpp @@ -494,7 +494,7 @@ void jobDisplayDroppedItem(void *parm, Job *j) { Zone *z = (Zone*)parm; if (z->u.get->_cnv) { - if (z->u.get->_cnv->_data0 != NULL) { + if (j->_count == 0) { _vm->_gfx->backupGetBackground(z->u.get, z->_left, z->_top); } -- cgit v1.2.3