[Scummvm-git-logs] scummvm master -> bea77fe2ee006d291074e360594e83e03ef6b68a
Strangerke
noreply at scummvm.org
Wed Oct 18 01:10:35 UTC 2023
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:
ff5642aa7d EFH: Switch engine to "build by default", detect it as ADGF_TESTING
bea77fe2ee KINGDOM: Add detection for the Windows version (not supported), switch to "build by default" and to ADGF_TESTING. Also r
Commit: ff5642aa7da242c781b4a8fd9638278a939242d9
https://github.com/scummvm/scummvm/commit/ff5642aa7da242c781b4a8fd9638278a939242d9
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2023-10-18T02:06:46+01:00
Commit Message:
EFH: Switch engine to "build by default", detect it as ADGF_TESTING
Changed paths:
engines/efh/configure.engine
engines/efh/detection.cpp
diff --git a/engines/efh/configure.engine b/engines/efh/configure.engine
index 523cdfaa00c..f868fa2444d 100644
--- a/engines/efh/configure.engine
+++ b/engines/efh/configure.engine
@@ -1,3 +1,3 @@
# This file is included from the main "configure" script
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps]
-add_engine efh "Escape From Hell" no
+add_engine efh "Escape From Hell" yes
diff --git a/engines/efh/detection.cpp b/engines/efh/detection.cpp
index cf1192c9930..41394b5c9c7 100644
--- a/engines/efh/detection.cpp
+++ b/engines/efh/detection.cpp
@@ -39,7 +39,7 @@ static const ADGameDescription gameDescriptions[] = {
"efh", nullptr, AD_ENTRY1s("escape.exe", "2702f8f713e113a853a925d29aecc709", 147312),
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_TESTING,
GUIO0()
},
// Escape From Hell English
@@ -47,7 +47,7 @@ static const ADGameDescription gameDescriptions[] = {
"efh", nullptr, AD_ENTRY1s("escape.exe", "1ca4ae3f2ea66c30d1ef3e257a86cd05", 141487),
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_TESTING,
GUIO0()
},
AD_TABLE_END_MARKER
Commit: bea77fe2ee006d291074e360594e83e03ef6b68a
https://github.com/scummvm/scummvm/commit/bea77fe2ee006d291074e360594e83e03ef6b68a
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2023-10-18T02:10:19+01:00
Commit Message:
KINGDOM: Add detection for the Windows version (not supported), switch to "build by default" and to ADGF_TESTING. Also replace GUIO1(GUIO_NONE) by GUIO0
Changed paths:
engines/kingdom/configure.engine
engines/kingdom/detection.cpp
diff --git a/engines/kingdom/configure.engine b/engines/kingdom/configure.engine
index 414925824c4..5a93f25a2a3 100644
--- a/engines/kingdom/configure.engine
+++ b/engines/kingdom/configure.engine
@@ -1,3 +1,3 @@
# This file is included from the main "configure" script
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps]
-add_engine kingdom "Kingdom: The Far Reaches" no "" "" ""
+add_engine kingdom "Kingdom: The Far Reaches" yes "" "" ""
diff --git a/engines/kingdom/detection.cpp b/engines/kingdom/detection.cpp
index ff842ae0847..c18f2684489 100644
--- a/engines/kingdom/detection.cpp
+++ b/engines/kingdom/detection.cpp
@@ -46,8 +46,8 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("KINGDEMO.EXE", "2ce478fc13086d0ddb02a2867ba307dc", 167154),
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE | ADGF_DEMO,
- GUIO1(GUIO_NONE)
+ ADGF_TESTING | ADGF_DEMO,
+ GUIO0()
},
// Kingdom PC DOS version v1.26 EN, provided by Strangerke
@@ -58,8 +58,8 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("KINGDOM.EXE", "64d3e03b963396ced402f3dc958765c0", 199693),
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
- GUIO1(GUIO_NONE)
+ ADGF_TESTING,
+ GUIO0()
},
// Kingdom 3DO, provided by Strangerke
@@ -70,11 +70,21 @@ static const ADGameDescription gameDescriptions[] = {
Common::EN_ANY,
Common::kPlatform3DO,
ADGF_UNSTABLE,
- GUIO1(GUIO_NONE)
+ GUIO0()
},
- AD_TABLE_END_MARKER
-};
+ // Kingdom PC Win version v1.0 EN, provided by Strangerke
+ {
+ "kingdom",
+ nullptr,
+ AD_ENTRY1s("REACHES.EXE", "37ba9463795c882e8ec7aef36a00152e", 207360),
+ Common::EN_ANY,
+ Common::kPlatformWindows,
+ ADGF_UNSTABLE,
+ GUIO0()
+ },
+
+ AD_TABLE_END_MARKER};
} // End of namespace Kingdom
More information about the Scummvm-git-logs
mailing list