[Scummvm-git-logs] scummvm master -> 3d7c590bd60e3a13f70a70f3261a73133500dde5

neuromancer noreply at scummvm.org
Thu Aug 14 19:59:50 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:
e14fce6d3d PRIVATE: enable subtitles for spanish release
3d7c590bd6 PRIVATE: added missing header


Commit: e14fce6d3d7efd0b9e29db328b9d5f95e3d65367
    https://github.com/scummvm/scummvm/commit/e14fce6d3d7efd0b9e29db328b9d5f95e3d65367
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2025-08-14T21:54:13+02:00

Commit Message:
PRIVATE: enable subtitles for spanish release

Changed paths:
    engines/private/detection.cpp


diff --git a/engines/private/detection.cpp b/engines/private/detection.cpp
index 2bcb22630f5..bbff2208f58 100644
--- a/engines/private/detection.cpp
+++ b/engines/private/detection.cpp
@@ -108,7 +108,7 @@ static const ADGameDescription gameDescriptions[] = {
 		Common::ES_ESP,
 		Common::kPlatformWindows,
 		ADGF_NO_FLAGS,
-		GUIO1(GUIO_NOMIDI)
+		GUIO2(GUIO_NOMIDI, GAMEOPTION_SUBTITLES)
 	},
 	{
 		"private-eye", // Demo from the EU release (ES)
@@ -118,7 +118,7 @@ static const ADGameDescription gameDescriptions[] = {
 		Common::ES_ESP,
 		Common::kPlatformWindows,
 		ADGF_DEMO,
-		GUIO1(GUIO_NOMIDI)
+		GUIO2(GUIO_NOMIDI, GAMEOPTION_SUBTITLES)
 	},
 	{
 		"private-eye", // EU release (FR)


Commit: 3d7c590bd60e3a13f70a70f3261a73133500dde5
    https://github.com/scummvm/scummvm/commit/3d7c590bd60e3a13f70a70f3261a73133500dde5
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2025-08-14T22:03:00+02:00

Commit Message:
PRIVATE: added missing header

Changed paths:
  A engines/private/detection.h


diff --git a/engines/private/detection.h b/engines/private/detection.h
new file mode 100644
index 00000000000..a57788c4db6
--- /dev/null
+++ b/engines/private/detection.h
@@ -0,0 +1,6 @@
+#ifndef PRIVATE_DETECTION_H
+#define PRIVATE_DETECTION_H
+
+#define GAMEOPTION_SUBTITLES   GUIO_GAMEOPTIONS1
+
+#endif // PRIVATE_DETECTION_H
\ No newline at end of file




More information about the Scummvm-git-logs mailing list