Skip to content

Commit

Permalink
DIRECTOR: Lingo: Fix 'the' entities processing
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Sep 1, 2016
1 parent 2f16dab commit 9e70b08
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions engines/director/lingo/lingo-the.cpp
Expand Up @@ -366,10 +366,12 @@ Datum Lingo::getTheEntity(int entity, Datum &id, int field) {
d.u.f = sqrt(id.u.f);
break;
case kTheColorQD:
push(Datum(1));
d.type = INT;
d.u.i = 1;
break;
case kTheColorDepth:
push(Datum(_vm->_colorDepth));
d.type = INT;
d.u.i = _vm->_colorDepth;
break;
default:
warning("Unprocessed getting field %d of entity %d", field, entity);
Expand Down

0 comments on commit 9e70b08

Please sign in to comment.