aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v1.cpp
diff options
context:
space:
mode:
authorSven Hesse2006-04-14 18:18:46 +0000
committerSven Hesse2006-04-14 18:18:46 +0000
commitcff96b0a75c3d20a822409d50db356b6cd06f54b (patch)
tree2a227166e375d5e7d3efd6429424e7b1a00366d9 /engines/gob/inter_v1.cpp
parentedd8557a0e9fbc4be48abe0579349642dc55d243 (diff)
downloadscummvm-rg350-cff96b0a75c3d20a822409d50db356b6cd06f54b.tar.gz
scummvm-rg350-cff96b0a75c3d20a822409d50db356b6cd06f54b.tar.bz2
scummvm-rg350-cff96b0a75c3d20a822409d50db356b6cd06f54b.zip
- Seems like I forget a branch in Mult_v2::animate()
- sub_1A52B is Scenery::updateStatic() svn-id: r21889
Diffstat (limited to 'engines/gob/inter_v1.cpp')
-rw-r--r--engines/gob/inter_v1.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 5aa91ba7b2..e009123fee 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -1585,7 +1585,12 @@ void Inter_v1::o1_freeStatic(void) {
}
void Inter_v1::o1_renderStatic(void) {
- _vm->_scenery->interRenderStatic();
+ int16 layer;
+ int16 index;
+
+ _vm->_inter->evalExpr(&index);
+ _vm->_inter->evalExpr(&layer);
+ _vm->_scenery->renderStatic(index, layer);
}
void Inter_v1::o1_loadCurLayer(void) {