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

bluegr bluegr at gmail.com
Sun Nov 22 13:25:21 UTC 2020


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

Summary:
5382e5dfa2 STARTREK: Add detection for another 25th anniversary English floppy
3a36d82af6 STARTREK: Added floppy versions of Judgment Rites


Commit: 5382e5dfa26d04445b5bcd7c10f36a2998839ca9
    https://github.com/scummvm/scummvm/commit/5382e5dfa26d04445b5bcd7c10f36a2998839ca9
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2020-11-22T15:25:15+02:00

Commit Message:
STARTREK: Add detection for another 25th anniversary English floppy

This one comes from Interplay's 10 Year Anniversary Anthology:
Classic Collection. Unfortunately, it only gets partway through
the intro before erroring out with "Tried to access file index 6
for file 'credit00.shp', which doesn't exist".

Changed paths:
    engines/startrek/detection.cpp


diff --git a/engines/startrek/detection.cpp b/engines/startrek/detection.cpp
index 5000faa7db..3891d6d463 100644
--- a/engines/startrek/detection.cpp
+++ b/engines/startrek/detection.cpp
@@ -123,6 +123,20 @@ static const StarTrekGameDescription gameDescriptions[] = {
 		0,
 	},
 
+	{ // ST25 DOS floppy edition (EN) #3 (Interplay's 10 Year Anthology: Classic Collection)
+		{
+			"st25",
+			"Floppy",
+			AD_ENTRY1s("data.001", "57040928a0f374281aa86ba4e7db8444", 7222652),
+			Common::EN_ANY,
+			Common::kPlatformDOS,
+			ADGF_UNSTABLE,
+			GUIO0()
+		},
+		GType_ST25,
+		0,
+	},
+
 	{ // ST25 DOS floppy edition (GER)
 		{
 			"st25",


Commit: 3a36d82af69bc14e41ad6717d90a5a0efad1348d
    https://github.com/scummvm/scummvm/commit/3a36d82af69bc14e41ad6717d90a5a0efad1348d
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2020-11-22T15:25:15+02:00

Commit Message:
STARTREK: Added floppy versions of Judgment Rites

This is, I think, the English and French floppy versions of
Judgment Rites. They were included with The White Label Doubles
collection, along with the talkie version of 25th Anniversary.
Unexpected, but a pleasant surprise since I already had the
talkie version of Judgment Rites.

The CD also contains a German version, but ScummVM already
(mis)identifies that one as the German CD version.

Changed paths:
    engines/startrek/detection.cpp


diff --git a/engines/startrek/detection.cpp b/engines/startrek/detection.cpp
index 3891d6d463..e91a8ef11e 100644
--- a/engines/startrek/detection.cpp
+++ b/engines/startrek/detection.cpp
@@ -296,6 +296,34 @@ static const StarTrekGameDescription gameDescriptions[] = {
 		GF_CDROM,
 	},
 
+	{ // STJR DOS Floppy edition (ENG) (The White Label - Doubles)
+		{
+			"stjr",
+			"Floppy",
+			AD_ENTRY1s("data.001", "1c8de3c02f69c07c582d59d3c29e4dd9", 2955146),
+			Common::EN_ANY,
+			Common::kPlatformDOS,
+			ADGF_UNSTABLE,
+			GUIO0()
+		},
+		GType_STJR,
+		0
+	},
+
+	{ // STJR DOS Floppy edition (FRA) (The White Label - Doubles)
+		{
+			"stjr",
+			"Floppy",
+			AD_ENTRY1s("data.001", "1c8de3c02f69c07c582d59d3c29e4dd9", 2966180),
+			Common::FR_FRA,
+			Common::kPlatformDOS,
+			ADGF_UNSTABLE,
+			GUIO0()
+		},
+		GType_STJR,
+		0
+	},
+
 	{ AD_TABLE_END_MARKER, 0, 0 }
 };
 




More information about the Scummvm-git-logs mailing list