[Scummvm-git-logs] scummvm master -> d12024fa68d5ba8387de0e0cb1913a59978bcc33
mduggan
noreply at scummvm.org
Wed Oct 23 03:06:07 UTC 2024
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:
d12024fa68 DGDS: Change engine name for consistency
Commit: d12024fa68d5ba8387de0e0cb1913a59978bcc33
https://github.com/scummvm/scummvm/commit/d12024fa68d5ba8387de0e0cb1913a59978bcc33
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2024-10-23T14:05:51+11:00
Commit Message:
DGDS: Change engine name for consistency
The engine name was upper-case 'DGDS', but make it lower-case 'dgds' for
consistency with other engines.
This requires ini file entries to be updated by hand or re-added, but the
engine is not yet in testing so not many users will be affected.
Changed paths:
engines/dgds/detection.cpp
engines/dgds/metaengine.cpp
diff --git a/engines/dgds/detection.cpp b/engines/dgds/detection.cpp
index ee861810d91..ba23208f60b 100644
--- a/engines/dgds/detection.cpp
+++ b/engines/dgds/detection.cpp
@@ -44,11 +44,11 @@ public:
}
const char* getEngineName() const override {
- return "dgds";
+ return "Dynamix Game Development System";
}
const char *getName() const override {
- return "DGDS";
+ return "dgds";
}
const char *getOriginalCopyright() const override {
diff --git a/engines/dgds/metaengine.cpp b/engines/dgds/metaengine.cpp
index b9418f80b5f..5b4436db7e3 100644
--- a/engines/dgds/metaengine.cpp
+++ b/engines/dgds/metaengine.cpp
@@ -34,7 +34,7 @@
class DgdsMetaEngine : public AdvancedMetaEngine<ADGameDescription> {
public:
const char *getName() const override {
- return "DGDS";
+ return "dgds";
}
bool hasFeature(MetaEngineFeature f) const override;
More information about the Scummvm-git-logs
mailing list