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) {
|
217 | 217 | |
218 | 218 | Plane *plane = _planes.findByObject(planeObject); |
219 | 219 | 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; |
221 | 222 | } |
222 | 223 | |
223 | 224 | ScreenItem *screenItem = plane->_screenItemList.findByObject(object); |