[Scummvm-git-logs] scummvm master -> 53be1f1d432e96917c2564d14b5f026b8f1f4d19

aquadran noreply at scummvm.org
Thu Jul 16 14:57:07 UTC 2026


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:
53be1f1d43 WINTERMUTE: Add missing 'IsMusicCrossfading' method for 'The Last Crown - Midnight Horror'


Commit: 53be1f1d432e96917c2564d14b5f026b8f1f4d19
    https://github.com/scummvm/scummvm/commit/53be1f1d432e96917c2564d14b5f026b8f1f4d19
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2026-07-16T16:56:55+02:00

Commit Message:
WINTERMUTE: Add missing 'IsMusicCrossfading' method for 'The Last Crown - Midnight Horror'

Changed paths:
    engines/wintermute/base/base_game.cpp


diff --git a/engines/wintermute/base/base_game.cpp b/engines/wintermute/base/base_game.cpp
index e6a2bdf547f..b2dfe8d91f1 100644
--- a/engines/wintermute/base/base_game.cpp
+++ b/engines/wintermute/base/base_game.cpp
@@ -1547,6 +1547,16 @@ bool BaseGame::scCallMethod(ScScript *script, ScStack *stack, ScStack *thisStack
 		return STATUS_OK;
 	}
 
+	//////////////////////////////////////////////////////////////////////////
+	// IsMusicCrossfading
+	//////////////////////////////////////////////////////////////////////////
+	else if (strcmp(name, "IsMusicCrossfading") == 0) {
+		stack->correctParams(0);
+
+		stack->pushBool(_musicCrossfadeRunning);
+		return STATUS_OK;
+	}
+
 #ifdef ENABLE_FOXTAIL
 	//////////////////////////////////////////////////////////////////////////
 	// [FoxTail] MusicCrossfadeVolume




More information about the Scummvm-git-logs mailing list