diff options
Diffstat (limited to 'engines/lab/engine.cpp')
-rw-r--r-- | engines/lab/engine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index 8c95f9631f..34db2c5a92 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -425,7 +425,7 @@ void LabEngine::mainGameLoop() { // Sets the current picture properly on the screen if (_mainDisplay) - _nextFileName = getPictName(&_closeDataPtr); + _nextFileName = getPictName(true); if (_noUpdateDiff) { // Potentially entered another room @@ -954,7 +954,7 @@ void LabEngine::performAction(uint16 actionMode, Common::Point curPos, uint16 &c // Take something. if (doActionRule(curPos, actionMode, _roomNum)) _curFileName = _newFileName; - else if (takeItem(curPos, &_closeDataPtr)) + else if (takeItem(curPos)) drawStaticMessage(kTextTakeItem); else if (doActionRule(curPos, kRuleActionTakeDef, _roomNum)) _curFileName = _newFileName; |