aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/detection.cpp
diff options
context:
space:
mode:
authorWalter van Niftrik2016-03-10 12:09:59 +0100
committerWalter van Niftrik2016-06-06 20:35:49 +0200
commite49085b49d0ff0b2962923682db6770ef3c908dd (patch)
tree3ab3f3cf4bd2479e670ebdb155983696c5cb3b9d /engines/adl/detection.cpp
parentee0c5e4452722fcee3304af26d209114b4c80f75 (diff)
downloadscummvm-rg350-e49085b49d0ff0b2962923682db6770ef3c908dd.tar.gz
scummvm-rg350-e49085b49d0ff0b2962923682db6770ef3c908dd.tar.bz2
scummvm-rg350-e49085b49d0ff0b2962923682db6770ef3c908dd.zip
ADL: Implement hires2 title screen
Diffstat (limited to 'engines/adl/detection.cpp')
-rw-r--r--engines/adl/detection.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp
index 3069f21304..81050d710d 100644
--- a/engines/adl/detection.cpp
+++ b/engines/adl/detection.cpp
@@ -32,8 +32,9 @@
namespace Adl {
-#define GAMEOPTION_COLOR GUIO_GAMEOPTIONS1
-#define GAMEOPTION_SCANLINES GUIO_GAMEOPTIONS2
+#define GAMEOPTION_COLOR GUIO_GAMEOPTIONS1
+#define GAMEOPTION_SCANLINES GUIO_GAMEOPTIONS2
+#define GAMEOPTION_MONO GUIO_GAMEOPTIONS3
static const ADExtraGuiOptionsMap optionsList[] = {
{
@@ -47,6 +48,16 @@ static const ADExtraGuiOptionsMap optionsList[] = {
},
{
+ GAMEOPTION_MONO,
+ {
+ _s("Color mode"),
+ _s("Use color graphics"),
+ "color",
+ true
+ }
+ },
+
+ {
GAMEOPTION_SCANLINES,
{
_s("Scanlines"),
@@ -92,7 +103,7 @@ static const AdlGameDescription gameDescriptions[] = {
Common::EN_ANY,
Common::kPlatformApple2GS, // FIXME
ADGF_NO_FLAGS,
- GUIO1(GAMEOPTION_SCANLINES)
+ GUIO2(GAMEOPTION_MONO, GAMEOPTION_SCANLINES)
},
GAME_TYPE_HIRES2
},