[Scummvm-git-logs] scummvm master -> e1fb81c91a2a32688324508d6512758463044e3b
digitall
547637+digitall at users.noreply.github.com
Thu Jul 15 10:33:38 UTC 2021
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:
e1fb81c91a AGI: Correct Detection Entries for Several Fangames including SQX
Commit: e1fb81c91a2a32688324508d6512758463044e3b
https://github.com/scummvm/scummvm/commit/e1fb81c91a2a32688324508d6512758463044e3b
Author: D G Turner (digitall at scummvm.org)
Date: 2021-07-15T11:30:17+01:00
Commit Message:
AGI: Correct Detection Entries for Several Fangames including SQX
The previous entries did not set the GF_FANMADE feature flag which meant
that the volume reversal workaround was not triggered resulting in no
audio output as per https://bugs.scummvm.org/ticket/9829
Several other entries which are using GAME macros and don't explicitly
set the GF_FANMADE flag should probably be fixed as well.
Changed paths:
engines/agi/detection_tables.h
diff --git a/engines/agi/detection_tables.h b/engines/agi/detection_tables.h
index 6eb12de484..b201be42fe 100644
--- a/engines/agi/detection_tables.h
+++ b/engines/agi/detection_tables.h
@@ -870,12 +870,12 @@ static const AGIGameDescription gameDescriptions[] = {
FANMADE("Snowboarding Demo (v1.0)", "24bb8f29f1eddb5c0a099705267c86e4"),
FANMADE("Solar System Tour", "b5a3d0f392dfd76a6aa63f3d5f578403"),
FANMADE("Sorceror's Appraisal", "fe62615557b3cb7b08dd60c9d35efef1"),
- GAME("sq0", "v1.03", "d2fd6f7404e86182458494e64375e590", 0x2917, GID_FANMADE),
- GAME("sq0", "v1.04", "2ad9d1a4624a98571ee77dcc83f231b6", 0x2917, GID_FANMADE),
- GAME_PS("sq0", "", "e1a8e4efcce86e1efcaa14633b9eb986", 762, 0x2440, GID_FANMADE, Common::kPlatformCoCo3),
- GAME("sqx", "v10.0 Feb 05", "c992ae2f8ab18360404efdf16fa9edd1", 0x2917, GID_FANMADE),
- GAME("sqx", "v10.0 Jul 18", "812edec45cefad559d190ffde2f9c910", 0x2917, GID_FANMADE),
- GAME_PS("sqx", "", "f0a59044475a5fa37c055d8c3eb4d1a7", 768, 0x2440, GID_FANMADE, Common::kPlatformCoCo3),
+ FANMADE_ILVFO("sq0", "v1.03", "d2fd6f7404e86182458494e64375e590", Common::EN_ANY, 0x2917, 0, 0),
+ FANMADE_ILVFO("sq0", "v1.04", "2ad9d1a4624a98571ee77dcc83f231b6", Common::EN_ANY, 0x2917, 0, 0),
+ FANMADE_ISVPO("sq0", "", "e1a8e4efcce86e1efcaa14633b9eb986", 762, 0x2440, Common::kPlatformCoCo3, 0),
+ FANMADE_ILVFO("sqx", "v10.0 Feb 05", "c992ae2f8ab18360404efdf16fa9edd1", Common::EN_ANY, 0x2917, 0, 0),
+ FANMADE_ILVFO("sqx", "v10.0 Jul 18", "812edec45cefad559d190ffde2f9c910", Common::EN_ANY, 0x2917, 0, 0),
+ FANMADE_ISVPO("sqx", "", "f0a59044475a5fa37c055d8c3eb4d1a7", 768, 0x2440, Common::kPlatformCoCo3, 0),
FANMADE_FO("Space Quest 3.5", "c077bc28d7b36213dd99dc9ecb0147fc", GF_AGIMOUSE, GAMEOPTIONS_FANMADE_MOUSE), // AGIPAL
FANMADE("Space Trek (v1.0)", "807a1aeadb2ace6968831d36ab5ea37a"),
FANMADE("Special Delivery", "88764dfe61126b8e73612c851b510a33"),
More information about the Scummvm-git-logs
mailing list