[Scummvm-git-logs] scummvm master -> ddb9a5bf7d6e64b6bb17a0fcd829f3e0d1c4224d
lotharsm
noreply at scummvm.org
Sun Feb 12 13:35:37 UTC 2023
This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
07ba87ab90 MTROPOLIS: Clear ADGF_TESTING flags for obsidian
6e0a6b705a PINK: Clear ADGF_TESTING flags
ddb9a5bf7d SAGA2: Clear ADGF_TESTING flags
Commit: 07ba87ab90e40abedd7d9c8ad7e926a624da92f5
https://github.com/scummvm/scummvm/commit/07ba87ab90e40abedd7d9c8ad7e926a624da92f5
Author: Lothar Serra Mari (mail at serra.me)
Date: 2023-02-12T14:22:25+01:00
Commit Message:
MTROPOLIS: Clear ADGF_TESTING flags for obsidian
Changed paths:
engines/mtropolis/detection_tables.h
diff --git a/engines/mtropolis/detection_tables.h b/engines/mtropolis/detection_tables.h
index ce3a66cf8ad..c0c07baa775 100644
--- a/engines/mtropolis/detection_tables.h
+++ b/engines/mtropolis/detection_tables.h
@@ -45,7 +45,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformMacintosh,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO3(GAMEOPTION_WIDESCREEN_MOD, GAMEOPTION_AUTO_SAVE_AT_CHECKPOINTS, GAMEOPTION_SOUND_EFFECT_SUBTITLES)
},
GID_OBSIDIAN,
@@ -67,7 +67,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformMacintosh,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO3(GAMEOPTION_WIDESCREEN_MOD, GAMEOPTION_AUTO_SAVE_AT_CHECKPOINTS, GAMEOPTION_SOUND_EFFECT_SUBTITLES)
},
GID_OBSIDIAN,
@@ -89,7 +89,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::JA_JPN,
Common::kPlatformMacintosh,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO1(GAMEOPTION_AUTO_SAVE_AT_CHECKPOINTS)
},
GID_OBSIDIAN,
@@ -116,7 +116,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO3(GAMEOPTION_WIDESCREEN_MOD, GAMEOPTION_AUTO_SAVE_AT_CHECKPOINTS, GAMEOPTION_SOUND_EFFECT_SUBTITLES)
},
GID_OBSIDIAN,
@@ -143,7 +143,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::DE_DEU,
Common::kPlatformWindows,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO1(GAMEOPTION_AUTO_SAVE_AT_CHECKPOINTS)
},
GID_OBSIDIAN,
@@ -169,7 +169,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::IT_ITA,
Common::kPlatformWindows,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO1(GAMEOPTION_AUTO_SAVE_AT_CHECKPOINTS)
},
GID_OBSIDIAN,
@@ -195,7 +195,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformMacintosh,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO1(GAMEOPTION_WIDESCREEN_MOD)
},
GID_OBSIDIAN,
@@ -221,7 +221,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO1(GAMEOPTION_WIDESCREEN_MOD)
},
GID_OBSIDIAN,
@@ -244,7 +244,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO1(GAMEOPTION_WIDESCREEN_MOD)
},
GID_OBSIDIAN,
@@ -269,7 +269,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO1(GAMEOPTION_WIDESCREEN_MOD)
},
GID_OBSIDIAN,
@@ -294,7 +294,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO0()
},
GID_OBSIDIAN,
@@ -317,7 +317,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO0()
},
GID_OBSIDIAN,
@@ -340,7 +340,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO1(GAMEOPTION_WIDESCREEN_MOD)
},
GID_OBSIDIAN,
@@ -363,7 +363,7 @@ static const MTropolisGameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_DEMO | ADGF_TESTING,
+ ADGF_DEMO,
GUIO1(GAMEOPTION_WIDESCREEN_MOD)
},
GID_OBSIDIAN,
Commit: 6e0a6b705ad296359efb1cffda175fbb3be333af
https://github.com/scummvm/scummvm/commit/6e0a6b705ad296359efb1cffda175fbb3be333af
Author: Lothar Serra Mari (mail at serra.me)
Date: 2023-02-12T14:34:05+01:00
Commit Message:
PINK: Clear ADGF_TESTING flags
Changed paths:
engines/pink/detection_tables.h
diff --git a/engines/pink/detection_tables.h b/engines/pink/detection_tables.h
index 2ff768e658a..cbfc5ba2824 100644
--- a/engines/pink/detection_tables.h
+++ b/engines/pink/detection_tables.h
@@ -32,7 +32,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "eae050c09d7f6bfbb3166d2c39957e31", 608976918),
Common::DA_DNK,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -43,7 +43,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "4ae829fb3988ad783409ce8311f95ddc", 613211963),
Common::NL_NLD,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -54,7 +54,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "223d0114d443904d8949263d512859da", 618203600),
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -66,7 +66,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "1ee65e570adb37d446a3be657e4b2e9a", 619145676),
Common::EN_GRB,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -77,7 +77,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "32c31829bf7e74a64968dd05f3224ce9", 612549215),
Common::FI_FIN,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -88,7 +88,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "fd641b5735fbe41d14db698ece29d2b1", 607185037),
Common::FR_FRA,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -99,7 +99,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "4ee8514f7303dea1949d7fc72ff65d8c", 609695309),
Common::DE_DEU,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -110,7 +110,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "52e2aba46d6cc47225bd5345775eeb59", 616292424),
Common::HE_ISR,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -121,7 +121,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "d03e38348aa33d8d25315b1acb687f66", 622766069),
Common::IT_ITA,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -132,7 +132,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "3b987bb529e131b92c3eb912871dedbd", 644839372),
Common::PL_POL,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -144,7 +144,7 @@ static const ADGameDescription gameDescriptions[] = {
"Data1.cab", "a2d2dd8f68f6e3cc335b566fbfcea0b2", 3699395),
Common::PL_POL,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM | GF_COMPRESSED,
+ ADGF_DROPPLATFORM | GF_COMPRESSED,
GUIO1(GUIO_NOMIDI)
},
@@ -155,7 +155,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "88a498256c4609550cf59497a372b7a3", 642216577),
Common::PT_BRA,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -166,7 +166,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "4802bace9cd89a73eb915a075b230646", 635322616),
Common::RU_RUS,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -177,7 +177,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "1225f76fe3a60d2ed2321ac92e2c1e79", 633626567),
Common::ES_ESP,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -188,7 +188,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("PPTP.ORB", "eadbc52f4c43b85edb7cc493b4149ba0", 633843917),
Common::SE_SWE,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -199,7 +199,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "b769855e2fc94b9180763211c349a9ed", 509498007),
Common::NL_NLD,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -210,7 +210,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "993b0491d507efee0010e4f1c000ab8b", 509498617),
Common::NL_NLD,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -221,7 +221,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "f480597a78ab70c2021b4141fe44a512", 503443586),
Common::EN_ANY,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -232,7 +232,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "d5af74262276f0ffef6605ea0db861d2", 492220293),
Common::FR_FRA,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -243,7 +243,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "a396a310e9d42ff43798ffdee2589a1a", 543000636),
Common::DE_DEU,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -254,7 +254,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "518453b73021c31566f084b3e4b8bdbf", 502988485),
Common::HE_ISR,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -265,7 +265,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "86fb890be3beaadb36d5daceae52a176", 504320381),
Common::IT_ITA,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -276,7 +276,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "51fb70412a6a5a6590dcaee842a940ab", 539274161),
Common::PL_POL,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -287,7 +287,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "149661ec6c35488a300293776a74b460", 526755539),
Common::PT_BRA,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -298,7 +298,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "1e5155c2219b3baea599563e02596ce5", 526369062),
Common::RU_RUS,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -309,7 +309,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "68040543f153e494e42efe9fab47b850", 508716126),
Common::ES_ESP,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -320,7 +320,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "7b7909414d93f847ff0c023a06ae1f7e", 500103742),
Common::SE_SWE,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
@@ -333,7 +333,7 @@ static const ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("HPP.orb", "3428dda98c21c4b6cd798750016796ab", 513518023),
Common::DA_DNK,
Common::kPlatformWindows,
- ADGF_TESTING | ADGF_DROPPLATFORM,
+ ADGF_DROPPLATFORM,
GUIO1(GUIO_NOMIDI)
},
Commit: ddb9a5bf7d6e64b6bb17a0fcd829f3e0d1c4224d
https://github.com/scummvm/scummvm/commit/ddb9a5bf7d6e64b6bb17a0fcd829f3e0d1c4224d
Author: Lothar Serra Mari (mail at serra.me)
Date: 2023-02-12T14:35:14+01:00
Commit Message:
SAGA2: Clear ADGF_TESTING flags
Changed paths:
engines/saga2/detection.cpp
diff --git a/engines/saga2/detection.cpp b/engines/saga2/detection.cpp
index 77c6a219856..69ed4f5f90c 100644
--- a/engines/saga2/detection.cpp
+++ b/engines/saga2/detection.cpp
@@ -112,7 +112,7 @@ static const SAGA2GameDescription gameDescriptions[] = {
},
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_TESTING,
+ ADGF_NO_FLAGS,
GUIO1(GUIO_NOASPECT)
},
GID_FTA2
More information about the Scummvm-git-logs
mailing list