[Scummvm-git-logs] scummvm branch-3-0 -> 9bcefc4748e95007f92abfafcb65173f639207fc

digitall noreply at scummvm.org
Fri Jan 2 23:15:49 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:
9bcefc4748 COMPOSER: Disable Loading Savegames From Launcher


Commit: 9bcefc4748e95007f92abfafcb65173f639207fc
    https://github.com/scummvm/scummvm/commit/9bcefc4748e95007f92abfafcb65173f639207fc
Author: D G Turner (digitall at scummvm.org)
Date: 2026-01-02T23:15:38Z

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