[Scummvm-git-logs] scummvm master -> 9e389534b578d8c8a66a0b640470c0f316ccbc9e

aquadran noreply at scummvm.org
Sat Jul 18 11:15:43 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:
9e389534b5 WINTERMUTE: Fixed missing save thumbnails in 'Monday Starts on Saturday'


Commit: 9e389534b578d8c8a66a0b640470c0f316ccbc9e
    https://github.com/scummvm/scummvm/commit/9e389534b578d8c8a66a0b640470c0f316ccbc9e
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2026-07-18T13:15:32+02:00

Commit Message:
WINTERMUTE: Fixed missing save thumbnails in 'Monday Starts on Saturday'

Changed paths:
    engines/wintermute/base/scriptables/script_ext_file.cpp


diff --git a/engines/wintermute/base/scriptables/script_ext_file.cpp b/engines/wintermute/base/scriptables/script_ext_file.cpp
index 44f2a171513..e8777ab21b7 100644
--- a/engines/wintermute/base/scriptables/script_ext_file.cpp
+++ b/engines/wintermute/base/scriptables/script_ext_file.cpp
@@ -213,8 +213,9 @@ bool SXFile::scCallMethod(ScScript *script, ScStack *stack, ScStack *thisStack,
 
 		if (BaseEngine::instance().getGameId() == "spacemadness") {
 			// 'Space Madness' (to copy bonus wallpapers from data.dcp to /saves/ folder)
-		} else if (BaseEngine::instance().getGameId() == "goldencalf") {
-			// 'The Golden Calf' (to save temporary screenshot as savegame screenshot)
+		} else if (BaseEngine::instance().getGameId() == "goldencalf" ||
+				   BaseEngine::instance().getGameId() == "msos") {
+			// 'The Golden Calf' and 'Monday Starts on Saturday' (to save temporary screenshot as savegame screenshot)
 			_readFile = _game->_fileManager->openFile(_filename);
 			if (_readFile) {
 				Common::WriteStream *stream = openSfmFileForWrite(dest);




More information about the Scummvm-git-logs mailing list