[Scummvm-git-logs] scummvm master -> a26abf02df0089efd1fba71bd297dd0022652853

aquadran noreply at scummvm.org
Thu Jul 24 17:33:42 UTC 2025


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

Summary:
a26abf02df WINTERMUTE: Added more comments to conditions


Commit: a26abf02df0089efd1fba71bd297dd0022652853
    https://github.com/scummvm/scummvm/commit/a26abf02df0089efd1fba71bd297dd0022652853
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2025-07-24T19:33:37+02:00

Commit Message:
WINTERMUTE: Added more comments to conditions

Changed paths:
    engines/wintermute/ad/ad_actor.cpp


diff --git a/engines/wintermute/ad/ad_actor.cpp b/engines/wintermute/ad/ad_actor.cpp
index 33e520bca67..5eaad05d60a 100644
--- a/engines/wintermute/ad/ad_actor.cpp
+++ b/engines/wintermute/ad/ad_actor.cpp
@@ -622,6 +622,12 @@ bool AdActor::update() {
 		_sentence->finish();
 	}
 
+	// Below condition code is present in Lite up to (Feb 8, 2012) (SVN repo)
+	// Present in Lite up to (Nov 1, 2015) (Git repo)
+	// Present up to 1.9.1 (Jan 1, 2010)
+	// Seems removed into 1.10.1 beta (July 19, 2012)
+	// or later but before Mar 21, 2013 (import into Git repo)
+	//
 	// default: stand animation
 	if (BaseEngine::instance().getTargetExecutable() < WME_1_9_2 &&
 	    BaseEngine::instance().getTargetExecutable() >= WME_LITE &&
@@ -801,6 +807,12 @@ bool AdActor::update() {
 		error("AdActor::Update - Unhandled enum");
 	}
 
+	// Below condition code is not present in Lite up to (Feb 8, 2012) (SVN repo)
+	// Not present in Lite up to (Nov 1, 2015) (Git repo)
+	// Not present up to 1.9.1 (Jan 1, 2010)
+	// Seems added into 1.10.1 beta (July 19, 2012)
+	// or later but before Mar 21, 2013 (import into Git repo)
+	//
 	// default: stand animation
 	if (BaseEngine::instance().getTargetExecutable() >= WME_1_9_2 &&
 	    BaseEngine::instance().getTargetExecutable() < WME_LITE &&




More information about the Scummvm-git-logs mailing list