[Scummvm-cvs-logs] SF.net SVN: scummvm:[35677] scummvm/trunk/engines

sev at users.sourceforge.net sev at users.sourceforge.net
Fri Jan 2 19:20:18 CET 2009


Revision: 35677
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35677&view=rev
Author:   sev
Date:     2009-01-02 18:20:15 +0000 (Fri, 02 Jan 2009)

Log Message:
-----------
Let compiled subengines be visible in About dialog.

Modified Paths:
--------------
    scummvm/trunk/engines/saga/detection.cpp
    scummvm/trunk/engines/scumm/detection.cpp

Modified: scummvm/trunk/engines/saga/detection.cpp
===================================================================
--- scummvm/trunk/engines/saga/detection.cpp	2009-01-02 18:01:19 UTC (rev 35676)
+++ scummvm/trunk/engines/saga/detection.cpp	2009-01-02 18:20:15 UTC (rev 35677)
@@ -143,7 +143,25 @@
 	SagaMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {}
 
 	virtual const char *getName() const {
-		return "Saga engine";
+		return "Saga engine ["
+
+#if defined(ENABLE_IHNM) && defined(ENABLE_SAGA2)
+			"all games"
+#else
+			"ITE"
+
+#if defined(ENABLE_IHNM)
+			", IHNM"
+#endif
+
+#if defined(ENABLE_SAGA2)
+			", SAGA2 games"
+#endif
+
+#endif
+		"]";
+
+;
 	}
 
 	virtual const char *getCopyright() const {

Modified: scummvm/trunk/engines/scumm/detection.cpp
===================================================================
--- scummvm/trunk/engines/scumm/detection.cpp	2009-01-02 18:01:19 UTC (rev 35676)
+++ scummvm/trunk/engines/scumm/detection.cpp	2009-01-02 18:20:15 UTC (rev 35677)
@@ -956,7 +956,23 @@
 }
 
 const char *ScummMetaEngine::getName() const {
-	return "Scumm Engine";
+	return "SCUMM Engine ["
+
+#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 *ScummMetaEngine::getCopyright() const {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list