[Scummvm-git-logs] scummvm master -> 79ca0011b186fa7be367f122a5380751bd2587da

sev- sev at scummvm.org
Sat Nov 28 18:11:11 UTC 2020


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

Summary:
79ca0011b1 SCUMM: Show compiled-in subengines


Commit: 79ca0011b186fa7be367f122a5380751bd2587da
    https://github.com/scummvm/scummvm/commit/79ca0011b186fa7be367f122a5380751bd2587da
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-11-28T19:10:52+01:00

Commit Message:
SCUMM: Show compiled-in subengines

Changed paths:
    engines/scumm/detection.cpp


diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp
index f4dc526395..552df4f4c9 100644
--- a/engines/scumm/detection.cpp
+++ b/engines/scumm/detection.cpp
@@ -130,7 +130,23 @@ DetectedGames ScummMetaEngineDetection::detectGames(const Common::FSList &fslist
 }
 
 const char *ScummMetaEngineDetection::getName() const {
-	return "SCUMM";
+	return "SCUMM ["
+
+#if defined(ENABLE_SCUMM_7_8) && defined(ENABLE_HE)
+		"all games"
+#else
+
+		"v0-v6 games"
+
+#if defined(ENABLE_SCUMM_7_8)
+		", v7 & v8 games"
+#endif
+#if defined(ENABLE_HE)
+		", HE71+ games"
+#endif
+
+#endif
+		"]";
 }
 
 const char *ScummMetaEngineDetection::getOriginalCopyright() const {




More information about the Scummvm-git-logs mailing list