diff options
author | Filippos Karapetis | 2012-06-15 22:03:42 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-06-15 22:32:16 +0300 |
commit | 8666a0528ff7f01acff97355df1bddf6136869b1 (patch) | |
tree | db6d5ed91fef067d5fb379171b82009f9f028964 | |
parent | 041b1447c02616c0f285556bb453e79268da7dce (diff) | |
download | scummvm-rg350-8666a0528ff7f01acff97355df1bddf6136869b1.tar.gz scummvm-rg350-8666a0528ff7f01acff97355df1bddf6136869b1.tar.bz2 scummvm-rg350-8666a0528ff7f01acff97355df1bddf6136869b1.zip |
SCI: Also skip a robot video in the Lighthouse demo
-rw-r--r-- | engines/sci/video/robot_decoder.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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); |