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

mikrosk noreply at scummvm.org
Sat Oct 26 17:38:47 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:
ed3ffe0c0d TEENAGENT: Rename Czech->Polish and add Polish Floppy version


Commit: ed3ffe0c0d1de469fdc08c0b09dd64f9fa48df9e
    https://github.com/scummvm/scummvm/commit/ed3ffe0c0d1de469fdc08c0b09dd64f9fa48df9e
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2024-10-26T19:38:27+02:00

Commit Message:
TEENAGENT: Rename Czech->Polish and add Polish Floppy version

- there never was a Czech CD version, only Polish

- Polish version had also a floppy variant with reduced voice file size

- Czech Floppy version seems to be running fine, no reason to mark it as
  unsupported

However both Polish and Czech versions still suffer from the known
issues:

- strings are hardcoded in English

- no voice over in Polish version

Changed paths:
    engines/teenagent/detection.cpp


diff --git a/engines/teenagent/detection.cpp b/engines/teenagent/detection.cpp
index 4034a34e17f..225fd5cf8b9 100644
--- a/engines/teenagent/detection.cpp
+++ b/engines/teenagent/detection.cpp
@@ -114,7 +114,7 @@ static const ADGameDescription teenAgentGameDescriptions[] = {
 	},
 	{ // Czech Floppy
 		"teenagent",
-		MetaEngineDetection::GAME_NOT_IMPLEMENTED, // Reason for being unsupported
+		"",
 		{
 			{"off.res",     0, "c5263a726d038bb6780a40eb3b83cc87", 2720432},
 			{"on.res",      0, "a0d5e5bbf6fab4bdc7f4094ed85f9639", 153907},
@@ -130,10 +130,10 @@ static const ADGameDescription teenAgentGameDescriptions[] = {
 		},
 		Common::CS_CZE,
 		Common::kPlatformDOS,
-		ADGF_UNSUPPORTED,
-		GUIO1(GUIO_NOMIDI)
+		ADGF_NO_FLAGS,
+		GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI)
 	},
-	{ // Czech CD
+	{ // Polish CD
 		"teenagent",
 		"CD",
 		{
@@ -149,11 +149,32 @@ static const ADGameDescription teenAgentGameDescriptions[] = {
 			{"sdr.res",     0, "d0b1398c78dc82571ddef5877c9a3a06", 14993},
 			AD_LISTEND
 		},
-		Common::CS_CZE,
+		Common::PL_POL,
 		Common::kPlatformDOS,
 		ADGF_CD,
 		GUIO1(GUIO_NOMIDI)
 	},
+	{ // Polish Floppy
+		"teenagent",
+		"",
+		{
+			{"off.res",     0, "aaac839a6ef639d68ebc97bc42faa42d", 2720432},
+			{"on.res",      0, "a0d5e5bbf6fab4bdc7f4094ed85f9639", 153907},
+			{"ons.res",     0, "a7e2e8def1f0fb46644c20686af0d91a", 173077},
+			{"varia.res",   0, "b786c48e160e1981b496a30acd3deff9", 216683},
+			{"lan_000.res", 0, "06e409b0a43ff0ced014b93fb8f5dd5b", 535599},
+			{"lan_500.res", 0, "c098cc17cc27a1cad4319fb6789aa5a7", 9538457},
+			{"sam_sam.res", 0, "547a48cc1be9cf30744de8b0b47838f2", 769552},
+			{"voices.res",  0, "955aa04517a2b0499adf17d9b7c6f4a1", 19376128},
+			{"cdlogo.res",  0, "6bf95a48f366bdf8af3a198c7b723c77", 64768},
+			{"sdr.res",     0, "d0b1398c78dc82571ddef5877c9a3a06", 14993},
+			AD_LISTEND
+		},
+		Common::PL_POL,
+		Common::kPlatformDOS,
+		ADGF_NO_FLAGS,
+		GUIO1(GUIO_NOMIDI)
+	},
 	{ // Demo
 		"teenagent",
 		"Demo",




More information about the Scummvm-git-logs mailing list