Skip to content

Commit

Permalink
SCUMM: click into sentence line in v0 now performs the action
Browse files Browse the repository at this point in the history
  • Loading branch information
tobigun committed Feb 11, 2012
1 parent 3294590 commit c010da0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion engines/scumm/verbs.cpp
Expand Up @@ -781,13 +781,15 @@ void ScummEngine_v0::checkExecVerbs() {
kid = 1;
else
kid = 2;
// TODO: get clicked kid
_activeVerb = kVerbWalkTo;
drawSentenceLine();
switchActor(kid);
}
_activeVerb = kVerbWalkTo;
return;
} else if (_activeVerb && _activeVerb != kVerbWalkTo && _activeVerb != kVerbWhatIs) {
if (_activeObjectNr && (!activeVerbPrep() || _activeObject2Nr))
execute = true;
}
} else {
int obj = 0;
Expand Down

0 comments on commit c010da0

Please sign in to comment.