[Scummvm-git-logs] scummvm master -> 39df14a946d7a0d5029aa115e271336816613b19

neuromancer noreply at scummvm.org
Sun Feb 20 22:05:29 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
39df14a946 HYPNO: avoid looping octo fight in spider


Commit: 39df14a946d7a0d5029aa115e271336816613b19
    https://github.com/scummvm/scummvm/commit/39df14a946d7a0d5029aa115e271336816613b19
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2022-02-20T23:05:41+01:00

Commit Message:
HYPNO: avoid looping octo fight in spider

Changed paths:
    engines/hypno/arcade.cpp


diff --git a/engines/hypno/arcade.cpp b/engines/hypno/arcade.cpp
index 499e5ef94bf..53304b4513c 100644
--- a/engines/hypno/arcade.cpp
+++ b/engines/hypno/arcade.cpp
@@ -321,7 +321,7 @@ void HypnoEngine::runArcade(ArcadeShooting *arc) {
 			}
 		}
 
-		if (checkArcadeLevelCompleted(background, segments[segmentIdx])) {
+		if (segments[segmentIdx].end || checkArcadeLevelCompleted(background, segments[segmentIdx])) {
 			skipVideo(background);
 			// Objectives
 			if (arc->obj1KillsRequired > 0 || arc->obj1MissesAllowed > 0) {




More information about the Scummvm-git-logs mailing list