diff options
author | Daniel Wolf | 2018-03-16 15:53:20 +0100 |
---|---|---|
committer | Daniel Wolf | 2018-03-16 22:33:06 +0100 |
commit | 999cf71dcf4ac9466915edd55a9c91094db1a99c (patch) | |
tree | 2333e10d0ab47a31ea8c65e838166d0aa09cb745 /common | |
parent | f8c32b07e7bc219e81df6d1f27209ac28d3ced6b (diff) | |
download | scummvm-rg350-999cf71dcf4ac9466915edd55a9c91094db1a99c.tar.gz scummvm-rg350-999cf71dcf4ac9466915edd55a9c91094db1a99c.tar.bz2 scummvm-rg350-999cf71dcf4ac9466915edd55a9c91094db1a99c.zip |
SCI: Add game option for enabling/disabling LarryScale in LSL7
All other SCI games continue using the default scaler.
Diffstat (limited to 'common')
-rw-r--r-- | common/gui_options.cpp | 1 | ||||
-rw-r--r-- | common/gui_options.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/gui_options.cpp b/common/gui_options.cpp index 18e02c1077..6f340bf88f 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -84,6 +84,7 @@ const struct GameOpt { // "gameOption10" would be invalid here because it contains "gameOption1" { GUIO_GAMEOPTIONS10, "gameOptionA" }, { GUIO_GAMEOPTIONS11, "gameOptionB" }, + { GUIO_GAMEOPTIONS12, "gameOptionC" }, { GUIO_NONE, 0 } }; diff --git a/common/gui_options.h b/common/gui_options.h index 0813ff1216..14d4cb9175 100644 --- a/common/gui_options.h +++ b/common/gui_options.h @@ -76,6 +76,7 @@ #define GUIO_GAMEOPTIONS9 "\060" #define GUIO_GAMEOPTIONS10 "\061" #define GUIO_GAMEOPTIONS11 "\062" +#define GUIO_GAMEOPTIONS12 "\063" #define GUIO0() (GUIO_NONE) #define GUIO1(a) (a) |