[Scummvm-git-logs] scummvm master -> 75f327ba61b74c5b56cb381b8f1b9a76e8416c66

bluegr noreply at scummvm.org
Sun Apr 27 21:26:09 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:
75f327ba61 GLK: Fix spacing in the output of the detection entry dumping feature


Commit: 75f327ba61b74c5b56cb381b8f1b9a76e8416c66
    https://github.com/scummvm/scummvm/commit/75f327ba61b74c5b56cb381b8f1b9a76e8416c66
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2025-04-28T00:25:58+03:00

Commit Message:
GLK: Fix spacing in the output of the detection entry dumping feature

Changed paths:
    engines/glk/detection.cpp


diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp
index ad34db41bd7..5852a56dc61 100644
--- a/engines/glk/detection.cpp
+++ b/engines/glk/detection.cpp
@@ -391,12 +391,12 @@ void GlkMetaEngineDetection::dumpDetectionEntries() const {
 
 			// Level9 engine does not use md5 checksums, so checksums are not printed. 
 			if (engineName == EngineName::LEVEL9) {
-				printf("\trom ( name \"%s\" size %lld )", escapeString(fname).c_str(), static_cast<long long int>(entry->_filesize));
+				printf("\trom ( name \"%s\" size %lld )\n", escapeString(fname).c_str(), static_cast<long long int>(entry->_filesize));
 			} else {
-				printf("\trom ( name \"%s\" size %lld md5-%d %s )", escapeString(fname).c_str(), static_cast<long long int>(entry->_filesize), getMD5Bytes(), checksum.c_str());
+				printf("\trom ( name \"%s\" size %lld md5-%d %s )\n", escapeString(fname).c_str(), static_cast<long long int>(entry->_filesize), getMD5Bytes(), checksum.c_str());
 			}
 			
-			printf(")\n");
+			printf(")\n\n");
 		}
 	}
 #endif




More information about the Scummvm-git-logs mailing list