diff options
author | Filippos Karapetis | 2009-10-17 21:56:40 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-10-17 21:56:40 +0000 |
commit | 3f3a166e66190820c4ae0f662e18cfcf22d12ab1 (patch) | |
tree | 4dbf439d9e1fa9b0f0eed435c0ae1976f5efc983 /engines | |
parent | bc8cf7e98df452437dc0c4857ea18df4befbbfe6 (diff) | |
download | scummvm-rg350-3f3a166e66190820c4ae0f662e18cfcf22d12ab1.tar.gz scummvm-rg350-3f3a166e66190820c4ae0f662e18cfcf22d12ab1.tar.bz2 scummvm-rg350-3f3a166e66190820c4ae0f662e18cfcf22d12ab1.zip |
Removed obsolete/resolved FIXME
svn-id: r45205
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/gui/gui.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index 353dfc5bd8..757c316ccd 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -589,8 +589,6 @@ bool SciGui::canBeHere(reg_t curObject, reg_t listReference) { controlMask = GET_SEL32V(curObject, illegalBits); result = (_gfx->onControl(SCI_SCREEN_MASK_CONTROL, checkRect) & controlMask) ? false : true; if ((result) && (signal & (SCI_ANIMATE_SIGNAL_IGNOREACTOR | SCI_ANIMATE_SIGNAL_REMOVEVIEW)) == 0) { - // FIXME: this seems to be causing problems when roger wilco falls down from time portal in the intro sequence - // There must be a bug somewhere in here List *list = _s->_segMan->lookupList(listReference); if (!list) error("kCanBeHere called with non-list as parameter"); |