diff options
author | Thierry Crozat | 2019-09-13 21:16:19 +0100 |
---|---|---|
committer | Thierry Crozat | 2019-09-13 21:16:52 +0100 |
commit | ced80c6da48fcb9922f190dc001c008426413e56 (patch) | |
tree | 90fabac03c5c79443aa14db43b465b1476da7662 | |
parent | 6f265805ec59e60fb8fe7ff9138c03e2ac4cd386 (diff) | |
download | scummvm-rg350-ced80c6da48fcb9922f190dc001c008426413e56.tar.gz scummvm-rg350-ced80c6da48fcb9922f190dc001c008426413e56.tar.bz2 scummvm-rg350-ced80c6da48fcb9922f190dc001c008426413e56.zip |
SUPERNOVA: Add testing flag and build engine by default
-rw-r--r-- | engines/supernova/configure.engine | 2 | ||||
-rw-r--r-- | engines/supernova/detection.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engines/supernova/configure.engine b/engines/supernova/configure.engine index 8f75fa4a3e..0971286f0e 100644 --- a/engines/supernova/configure.engine +++ b/engines/supernova/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 supernova "Mission Supernova" no +add_engine supernova "Mission Supernova" yes diff --git a/engines/supernova/detection.cpp b/engines/supernova/detection.cpp index 352eac8d83..86393a07cd 100644 --- a/engines/supernova/detection.cpp +++ b/engines/supernova/detection.cpp @@ -62,7 +62,7 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("msn_data.000", "f64f16782a86211efa919fbae41e7568", 24163), Common::DE_DEU, Common::kPlatformDOS, - ADGF_UNSTABLE, + ADGF_TESTING, GUIO1(GAMEOPTION_IMPROVED) }, { @@ -71,7 +71,7 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("msn_data.000", "f64f16782a86211efa919fbae41e7568", 24163), Common::EN_ANY, Common::kPlatformDOS, - ADGF_UNSTABLE, + ADGF_TESTING, GUIO1(GAMEOPTION_IMPROVED) }, // Mission Supernova 2 @@ -81,7 +81,7 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("ms2_data.000", "e595610cba4a6d24a763e428d05cc83f", 24805), Common::DE_DEU, Common::kPlatformDOS, - ADGF_UNSTABLE, + ADGF_TESTING, GUIO1(GAMEOPTION_IMPROVED) }, { @@ -90,7 +90,7 @@ static const ADGameDescription gameDescriptions[] = { AD_ENTRY1s("ms2_data.000", "e595610cba4a6d24a763e428d05cc83f", 24805), Common::EN_ANY, Common::kPlatformDOS, - ADGF_UNSTABLE, + ADGF_TESTING, GUIO1(GAMEOPTION_IMPROVED) }, AD_TABLE_END_MARKER |