diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/bbvs/bbvs.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/bbvs/bbvs.cpp b/engines/bbvs/bbvs.cpp index 57284a5f14..5f433e0ca2 100644 --- a/engines/bbvs/bbvs.cpp +++ b/engines/bbvs/bbvs.cpp @@ -183,9 +183,8 @@ Common::Error BbvsEngine::run() { else if (_currSceneNum == kMainMenu) runMainMenu(); else if (_currSceneNum == kCredits && - (_mouseButtons & (kLeftButtonClicked | kRightButtonClicked))) { - _mouseButtons &= ~kLeftButtonClicked; - _mouseButtons &= ~kRightButtonClicked; + (_mouseButtons & kAnyButtonClicked)) { + _mouseButtons &= ~kAnyButtonClicked; _newSceneNum = kMainMenu; } if (_playVideoNumber > 0) { @@ -2042,8 +2041,6 @@ void BbvsEngine::walkFoundPath(int count) { Common::Point destPt = _destWalkAreaPt, newDestPt; - // TODO This needs some cleanup but seems to work - while (1) { int index = 0; |