Ticket #13209: lsl7.patch

File lsl7.patch, 1.4 KB (added by m0003r, 2 years ago)
  • engines/sci/graphics/frameout.cpp

    diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp
    index 3fffd724a8e..67f3fae2565 100644
    a b void GfxFrameout::kernelAddScreenItem(const reg_t object) {  
    217217
    218218        Plane *plane = _planes.findByObject(planeObject);
    219219        if (plane == nullptr) {
    220                 error("kAddScreenItem: Plane %04x:%04x not found for screen item %04x:%04x", PRINT_REG(planeObject), PRINT_REG(object));
     220                warning("kAddScreenItem: Plane %04x:%04x not found for screen item %04x:%04x", PRINT_REG(planeObject), PRINT_REG(object));
     221                return;
    221222        }
    222223
    223224        ScreenItem *screenItem = plane->_screenItemList.findByObject(object);