From 5ee569bce634d6704703239e665d865afc4e48fb Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Wed, 11 Apr 2012 11:39:56 -0400 Subject: [PATCH] PEGASUS: Fix ghosted biochips when loading saved games Could happen when loading saved games that have fewer biochips than you previously had. --- engines/pegasus/items/inventorypicture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/pegasus/items/inventorypicture.cpp b/engines/pegasus/items/inventorypicture.cpp index 1f887773d6a4..84999c0b228c 100644 --- a/engines/pegasus/items/inventorypicture.cpp +++ b/engines/pegasus/items/inventorypicture.cpp @@ -197,12 +197,12 @@ void InventoryPicture::activateInventoryPicture() { _panelMovie.redrawMovieWorld(); } - _panelMovie.setTime(0); uint32 numSlots = _itemsPerRow * _numberOfRows; for (uint32 i = numItems; i < numSlots; i++) { getItemXY(i, x, y); _panelMovie.moveMovieBoxTo(x, y); + _panelMovie.setTime(0); _panelMovie.redrawMovieWorld(); }