[Scummvm-git-logs] scummvm master -> 353bb8387f1de6879aaa8ec5c91accba946c74b7

ccawley2011 noreply at scummvm.org
Sat Jul 23 21:09:42 UTC 2022


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

Summary:
89c634be2d GUI: Display the full engine name in the About dialog
353bb8387f PLAYGROUND3D: Fix typos


Commit: 89c634be2d0756b7720a8ceae14d7572af8155d1
    https://github.com/scummvm/scummvm/commit/89c634be2d0756b7720a8ceae14d7572af8155d1
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2022-07-23T22:08:53+01:00

Commit Message:
GUI: Display the full engine name in the About dialog

Changed paths:
    gui/about.cpp


diff --git a/gui/about.cpp b/gui/about.cpp
index 94ec8d52c37..c360021f734 100644
--- a/gui/about.cpp
+++ b/gui/about.cpp
@@ -123,9 +123,6 @@ AboutDialog::AboutDialog()
 	PluginList::const_iterator iter = plugins.begin();
 	for (; iter != plugins.end(); ++iter) {
 		Common::String str;
-		str = "C0";
-		str += (*iter)->getName();
-		addLine(str);
 
 		const Plugin *p = EngineMan.findPlugin((*iter)->getName());
 
@@ -134,6 +131,9 @@ AboutDialog::AboutDialog()
 			continue;
 		}
 
+		str = "C0";
+		str += p->get<MetaEngineDetection>().getName();
+		addLine(str);
 		str = "C2";
 		str += p->get<MetaEngineDetection>().getOriginalCopyright();
 		addLine(str);


Commit: 353bb8387f1de6879aaa8ec5c91accba946c74b7
    https://github.com/scummvm/scummvm/commit/353bb8387f1de6879aaa8ec5c91accba946c74b7
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2022-07-23T22:09:25+01:00

Commit Message:
PLAYGROUND3D: Fix typos

Changed paths:
    engines/playground3d/detection.cpp


diff --git a/engines/playground3d/detection.cpp b/engines/playground3d/detection.cpp
index f84dc9c4e88..f0abff2f3e9 100644
--- a/engines/playground3d/detection.cpp
+++ b/engines/playground3d/detection.cpp
@@ -25,7 +25,7 @@
 #include "playground3d/playground3d.h"
 
 static const PlainGameDescriptor playground3d_setting[] = {
-	{ "playground3d", "Playground 3d: the testing and plaground environment for 3d renderers" },
+	{ "playground3d", "Playground 3d: the testing and playground environment for 3d renderers" },
 	{ nullptr, nullptr }
 };
 
@@ -53,7 +53,7 @@ public:
 	}
 
 	const char *getName() const override {
-		return "Playground 3d: the testing and plaground environment for 3d renderers";
+		return "Playground 3d: the testing and playground environment for 3d renderers";
 	}
 
 	const char *getOriginalCopyright() const override {




More information about the Scummvm-git-logs mailing list