diff options
author | Thierry Crozat | 2018-06-03 17:41:47 +0100 |
---|---|---|
committer | GitHub | 2018-06-03 17:41:47 +0100 |
commit | 4229e2642ef33f761528cc5811726df56f3a42d0 (patch) | |
tree | 05e7f223bd939694b5a72299e919c5aea5cf3a9a /common | |
parent | e10c33fc2028a618c25a6bccbf6c90f2f2fa525d (diff) | |
parent | 999cf71dcf4ac9466915edd55a9c91094db1a99c (diff) | |
download | scummvm-rg350-4229e2642ef33f761528cc5811726df56f3a42d0.tar.gz scummvm-rg350-4229e2642ef33f761528cc5811726df56f3a42d0.tar.bz2 scummvm-rg350-4229e2642ef33f761528cc5811726df56f3a42d0.zip |
Merge pull request #1141 from DanielSWolf/larryscale
SCI: High-quality "LarryScale" cel scaler for LSL7
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 00de6ec01c..06b6c20a61 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, nullptr } }; 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) |