aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2019-12-29 00:31:24 +0100
committerEugene Sandulenko2019-12-29 00:51:16 +0100
commitcb497e3620321f67563c85d5ce83e5446a49ce3b (patch)
tree796e075313cb5af6dd73a054f27bb771e3738db9 /engines
parentd1cd2f51261407fa363d28c256f7697e2dc754ad (diff)
downloadscummvm-rg350-cb497e3620321f67563c85d5ce83e5446a49ce3b.tar.gz
scummvm-rg350-cb497e3620321f67563c85d5ce83e5446a49ce3b.tar.bz2
scummvm-rg350-cb497e3620321f67563c85d5ce83e5446a49ce3b.zip
DIRECTOR: LINGO: Added 'set... of the cast' processing
Diffstat (limited to 'engines')
-rw-r--r--engines/director/lingo/lingo-the.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp
index 8ae7777c0b..1ea03b2ce6 100644
--- a/engines/director/lingo/lingo-the.cpp
+++ b/engines/director/lingo/lingo-the.cpp
@@ -308,6 +308,9 @@ void Lingo::setTheEntity(int entity, Datum &id, int field, Datum &d) {
// bpp. 1, 2, 4, 8, 32
warning("STUB: Lingo::setTheEntity(): Set color depth to %d", _vm->_colorDepth);
break;
+ case kTheCast:
+ setTheCast(id, field, d);
+ break;
default:
warning("Lingo::setTheEntity(): Unprocessed setting field %d of entity %d", field, entity);
}