From 8666a0528ff7f01acff97355df1bddf6136869b1 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 15 Jun 2012 22:03:42 +0300 Subject: SCI: Also skip a robot video in the Lighthouse demo --- engines/sci/video/robot_decoder.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engines/sci/video/robot_decoder.cpp b/engines/sci/video/robot_decoder.cpp index 8ffcecc339..ebcfac6054 100644 --- a/engines/sci/video/robot_decoder.cpp +++ b/engines/sci/video/robot_decoder.cpp @@ -93,6 +93,10 @@ bool RobotDecoder::load(GuiResourceId id) { // videos. Skip it for now. if (g_sci->getGameId() == GID_RAMA && id == 1003) return false; + + // TODO: The robot video in the Lighthouse demo gets stuck + if (g_sci->getGameId() == GID_LIGHTHOUSE && id == 16) + return false; Common::String fileName = Common::String::format("%d.rbt", id); Common::SeekableReadStream *stream = SearchMan.createReadStreamForMember(fileName); -- cgit v1.2.3