diff --git a/engines/agos/cursor.cpp b/engines/agos/cursor.cpp index baa34101b02..cd91117d62a 100644 --- a/engines/agos/cursor.cpp +++ b/engines/agos/cursor.cpp @@ -572,7 +572,7 @@ void AGOSEngine::handleMouseMoved() { if (_dragMode != 0) { _dragEnd = 1; } else { - _oneClick = true; + _oneClick = 1; } _dragCount = 0; } @@ -604,8 +604,8 @@ void AGOSEngine::handleMouseMoved() { } x = 0; - if (_oneClick == true) { - _oneClick = false; + if (_oneClick > 0) { + _oneClick = 0; x = 1; } else { if (_litBoxFlag == 0 && _needHitAreaRecalc == 0)