[Scummvm-git-logs] scummvm master -> e34a0a187865be6d6a5348329fdc4a12851daaa2
digitall
547637+digitall at users.noreply.github.com
Sat Jul 17 11:54:58 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:
e34a0a1878 AGI: Further Fix for SQ0 and SQX Fangame Detection Entries
Commit: e34a0a187865be6d6a5348329fdc4a12851daaa2
https://github.com/scummvm/scummvm/commit/e34a0a187865be6d6a5348329fdc4a12851daaa2
Author: D G Turner (digitall at scummvm.org)
Date: 2021-07-17T12:53:06+01:00
Commit Message:
AGI: Further Fix for SQ0 and SQX Fangame Detection Entries
These worked, but caused the entries in the launcher to be named wrongly
so have switched to using GAME_FO macro to set the GF_FANMADE feature
flag without other flags causing side effects for the launcher entry
naming.
Changed paths:
engines/agi/detection_tables.h
diff --git a/engines/agi/detection_tables.h b/engines/agi/detection_tables.h
index b201be42fe..39f2c1ba06 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"),
- 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),
+ GAME_FO("sq0", "v1.03", "d2fd6f7404e86182458494e64375e590", 0x2917, GF_FANMADE, GID_FANMADE, GAMEOPTIONS_DEFAULT),
+ GAME_FO("sq0", "v1.04", "2ad9d1a4624a98571ee77dcc83f231b6", 0x2917, GF_FANMADE, GID_FANMADE, GAMEOPTIONS_DEFAULT),
+ GAME_PS("sq0", "", "e1a8e4efcce86e1efcaa14633b9eb986", 762, 0x2440, GID_FANMADE, Common::kPlatformCoCo3),
+ GAME_FO("sqx", "v10.0 Feb 05", "c992ae2f8ab18360404efdf16fa9edd1", 0x2917, GF_FANMADE, GID_FANMADE, GAMEOPTIONS_DEFAULT),
+ GAME_FO("sqx", "v10.0 Jul 18", "812edec45cefad559d190ffde2f9c910", 0x2917, GF_FANMADE, GID_FANMADE, GAMEOPTIONS_DEFAULT),
+ GAME_PS("sqx", "", "f0a59044475a5fa37c055d8c3eb4d1a7", 768, 0x2440, GID_FANMADE, Common::kPlatformCoCo3),
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