[Scummvm-git-logs] scummvm master -> 66ddee1185644b0bb204c374ebba4f0d71a92d2d

digitall noreply at scummvm.org
Fri Jan 2 23:13:16 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:
66ddee1185 COMPOSER: Disable Loading Savegames From Launcher


Commit: 66ddee1185644b0bb204c374ebba4f0d71a92d2d
    https://github.com/scummvm/scummvm/commit/66ddee1185644b0bb204c374ebba4f0d71a92d2d
Author: D G Turner (digitall at scummvm.org)
Date: 2026-01-02T23:10:54Z

Commit Message:
COMPOSER: Disable Loading Savegames From Launcher

This feature is currently broken for Darby the Dragon as per bug #16432

Loading and saving still work fine from within game so disabling for now
until this is fixed properly.

Changed paths:
    engines/composer/metaengine.cpp


diff --git a/engines/composer/metaengine.cpp b/engines/composer/metaengine.cpp
index ae10aa4ce50..9c0b0218f73 100644
--- a/engines/composer/metaengine.cpp
+++ b/engines/composer/metaengine.cpp
@@ -99,7 +99,8 @@ Common::Error ComposerMetaEngine::createInstance(OSystem *syst, Engine **engine,
 }
 
 bool ComposerMetaEngine::hasFeature(MetaEngineFeature f) const {
-	return ((f == kSupportsListSaves) || (f == kSupportsLoadingDuringStartup));
+	// FIXME: Disabled loading from launcher currently due to issues with loading Darby The Dragon (and probably others) savegames. See bug #16432
+	return ((f == kSupportsListSaves) /*|| (f == kSupportsLoadingDuringStartup)*/);
 }
 
 Common::KeymapArray ComposerMetaEngine::initKeymaps(const char *target) const {




More information about the Scummvm-git-logs mailing list