mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 08:53:51 +00:00
_noRightClick got reversed in setVerb for FF
svn-id: r21591
This commit is contained in:
parent
cc75c68090
commit
778a528df3
@ -1726,7 +1726,7 @@ void SimonEngine::handle_mouse_moved() {
|
||||
}
|
||||
|
||||
if (_rightButtonDown) {
|
||||
_rightButtonDown = false;
|
||||
_rightButtonDown = 0;
|
||||
setVerb(NULL);
|
||||
}
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user