[Scummvm-git-logs] scummvm master -> fa4de80b18e13f61fb1c9310f504d2023a9a4d16

sev- noreply at scummvm.org
Tue Jul 8 22:14:33 UTC 2025


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

Summary:
fa4de80b18 GLK: Fix compilation for release and cleanup


Commit: fa4de80b18e13f61fb1c9310f504d2023a9a4d16
    https://github.com/scummvm/scummvm/commit/fa4de80b18e13f61fb1c9310f504d2023a9a4d16
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-07-09T00:14:26+02:00

Commit Message:
GLK: Fix compilation for release and cleanup

Changed paths:
    engines/glk/detection.cpp


diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp
index 74c365fe75a..01ca8a1692b 100644
--- a/engines/glk/detection.cpp
+++ b/engines/glk/detection.cpp
@@ -317,7 +317,6 @@ uint GlkMetaEngineDetection::getMD5Bytes() const {
 }
 
 void GlkMetaEngineDetection::dumpDetectionEntries() const {
-#if 1
 	enum class EngineName : uint8 {
     	COMPREHEND,
     	LEVEL9,
@@ -345,7 +344,9 @@ void GlkMetaEngineDetection::dumpDetectionEntries() const {
         { Glk::Quest::QuestMetaEngine::getDetectionEntries(), EngineName::OTHER },
         { Glk::Scott::ScottMetaEngine::getDetectionEntries(), EngineName::OTHER },
         { Glk::ZCode::ZCodeMetaEngine::getDetectionEntries(), EngineName::OTHER },
+#ifndef RELEASE_BUILD
         { Glk::TADS::TADSMetaEngine::getDetectionEntries(), EngineName::OTHER },
+#endif
         { nullptr, EngineName::OTHER }
     };
 
@@ -382,7 +383,6 @@ void GlkMetaEngineDetection::dumpDetectionEntries() const {
 			printf(")\n\n");
 		}
 	}
-#endif
 }
 
 




More information about the Scummvm-git-logs mailing list