aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v3.cpp
diff options
context:
space:
mode:
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