aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v3.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-08-03 15:18:00 +0000
committerSven Hesse2007-08-03 15:18:00 +0000
commite802f067cd96d63054b4233e44db02b660557787 (patch)
treee49723f0af30097d6a0bc323876933755bce97d3 /engines/gob/inter_v3.cpp
parent02103a65a271af647ff32928b331ee4291607931 (diff)
downloadscummvm-rg350-e802f067cd96d63054b4233e44db02b660557787.tar.gz
scummvm-rg350-e802f067cd96d63054b4233e44db02b660557787.tar.bz2
scummvm-rg350-e802f067cd96d63054b4233e44db02b660557787.zip
Lost in Time now (kind of) shows the title and the wobble-effect is drawn
svn-id: r28433
Diffstat (limited to 'engines/gob/inter_v3.cpp')
-rw-r--r--engines/gob/inter_v3.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/gob/inter_v3.cpp b/engines/gob/inter_v3.cpp
index 701842a9d2..51413c839a 100644
--- a/engines/gob/inter_v3.cpp
+++ b/engines/gob/inter_v3.cpp
@@ -594,7 +594,7 @@ void Inter_v3::setupOpcodes() {
{NULL, ""},
{NULL, ""},
{NULL, ""},
- {NULL, ""},
+ OPCODE(o3_wobble),
/* 28 */
{NULL, ""},
{NULL, ""},
@@ -894,4 +894,8 @@ bool Inter_v3::o3_copySprite(OpFuncParams &params) {
return false;
}
+void Inter_v3::o3_wobble(OpGobParams &params) {
+ _vm->_draw->wobble(_vm->_draw->_backSurface);
+}
+
} // End of namespace Gob