Skip to content

Commit

Permalink
SCUMM: make what-is verb work in v0 again
Browse files Browse the repository at this point in the history
  • Loading branch information
tobigun committed Feb 11, 2012
1 parent 4bc726b commit ffcd600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/scumm/verbs.cpp
Expand Up @@ -784,7 +784,7 @@ void ScummEngine_v0::checkExecVerbs() {
_activeVerb = kVerbPush;
}

if (_mouseAndKeyboardStat < MBS_MAX_KEY) {
if (_mouseAndKeyboardStat > 0 && _mouseAndKeyboardStat < MBS_MAX_KEY) {
// TODO: check keypresses
} else if ((_mouseAndKeyboardStat & MBS_MOUSE_MASK) || _activeVerb == kVerbWhatIs) {
// click region: sentence line
Expand Down

0 comments on commit ffcd600

Please sign in to comment.