_noRightClick got reversed in setVerb for FF

svn-id: r21591
This commit is contained in:
Travis Howell 2006-04-04 11:28:37 +00:00
parent cc75c68090
commit 778a528df3
2 changed files with 2 additions and 2 deletions

View File

@ -1726,7 +1726,7 @@ void SimonEngine::handle_mouse_moved() {
}
if (_rightButtonDown) {
_rightButtonDown = false;
_rightButtonDown = 0;
setVerb(NULL);
}
}

View File

@ -443,7 +443,7 @@ void SimonEngine::resetVerbs() {
void SimonEngine::setVerb(HitArea *ha) {
if (getGameType() == GType_FF) {
int cursor = _mouseCursor;
if (!_noRightClick)
if (_noRightClick)
return;
if (cursor > 13)