[Scummvm-git-logs] scummvm master -> 5ea930ccf71c16b4a63e6f2922097fc27c7ba9ed
bluegr
noreply at scummvm.org
Sat Apr 26 18:33:09 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
e07d8b3cf6 GLK: Disable detection table dumping code
5ea930ccf7 SCUMM: Disable detection table dumping code
Commit: e07d8b3cf6430935d033635b689835cc936b61d6
https://github.com/scummvm/scummvm/commit/e07d8b3cf6430935d033635b689835cc936b61d6
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2025-04-26T21:32:13+03:00
Commit Message:
GLK: Disable detection table dumping code
This will need further testing before it's enabled
Changed paths:
engines/glk/detection.cpp
diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp
index 1c16bedb368..cb2b8682026 100644
--- a/engines/glk/detection.cpp
+++ b/engines/glk/detection.cpp
@@ -332,7 +332,7 @@ static Common::String escapeString(const char *string) {
}
void GlkMetaEngineDetection::dumpDetectionEntries() const {
-
+#if 0
enum class EngineName : uint8 {
COMPREHEND,
LEVEL9,
@@ -397,6 +397,7 @@ void GlkMetaEngineDetection::dumpDetectionEntries() const {
debug(")\n");
}
}
+#endif
}
Commit: 5ea930ccf71c16b4a63e6f2922097fc27c7ba9ed
https://github.com/scummvm/scummvm/commit/5ea930ccf71c16b4a63e6f2922097fc27c7ba9ed
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2025-04-26T21:32:36+03:00
Commit Message:
SCUMM: Disable detection table dumping code
This will need further testing before it's enabled
Changed paths:
engines/scumm/detection.cpp
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp
index eb60d342531..4ad6f5907a7 100644
--- a/engines/scumm/detection.cpp
+++ b/engines/scumm/detection.cpp
@@ -121,6 +121,7 @@ static Common::String escapeString(const char *string) {
}
void ScummMetaEngineDetection::dumpDetectionEntries() const {
+#if 0
for (const MD5Table *entry = md5table; entry->gameid != 0; ++entry) {
PlainGameDescriptor pd = findGame(entry->gameid);
const char *title = pd.description;
@@ -139,8 +140,8 @@ void ScummMetaEngineDetection::dumpDetectionEntries() const {
debug("\trom (name \"%s\" size %lld md5-%d %s)", escapeString(entry->gameid).c_str(), static_cast<long long int>(entry->filesize), getMD5Bytes(), md5.c_str());
debug(")\n");
-
}
+#endif
}
PlainGameDescriptor ScummMetaEngineDetection::findGame(const char *gameid) const {
More information about the Scummvm-git-logs
mailing list