diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/gui/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index de1de225bf..f0cfb2e11d 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -423,7 +423,6 @@ void SciGui::animate(reg_t listReference, bool cycle, int argc, reg_t *argv) { void SciGui::addToPicList(reg_t listReference, int argc, reg_t *argv) { List *list; - Common::List<GuiAnimateList> *sortedList; _gfx->SetPort((GuiPort *)_windowMgr->_picWind); @@ -431,6 +430,7 @@ void SciGui::addToPicList(reg_t listReference, int argc, reg_t *argv) { if (!list) error("kAddToPic called with non-list as parameter"); +// Common::List<GuiAnimateList> *sortedList; // sortedList = _gfx->AnimateMakeSortedList(list); // uint16 szList = list.getSize(); |