diff options
-rw-r--r-- | engines/saga/interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp index bb1de8c70a..ea69d75590 100644 --- a/engines/saga/interface.cpp +++ b/engines/saga/interface.cpp @@ -1556,7 +1556,7 @@ void Interface::update(const Point& mousePoint, int updateFlag) { if (_vm->_scene->isInIntro() || _fadeMode == kFadeOut || !_active) { // When opening the psychic profile, the interface is locked (_active is false) // Don't return if the psychic profile is up, so that mouse clicks can be processed - if (!(_vm->getGameType() == GType_IHNM && _panelMode == kPanelPlacard)) + if (!(_vm->getGameType() == GType_IHNM && _panelMode == kPanelPlacard && (updateFlag & UPDATE_MOUSECLICK))) return; } |