diff options
author | Filippos Karapetis | 2018-09-01 13:05:02 +0300 |
---|---|---|
committer | Filippos Karapetis | 2018-09-01 13:14:38 +0300 |
commit | 7f83640894c16b46aaff60baff0268a6e5e951bc (patch) | |
tree | 54fd18b8d12670fce77531bfc298111b6b3620f0 /common | |
parent | 3c8a0a3d2ea4cf67960a23b77460e6cf95c64d60 (diff) | |
download | scummvm-rg350-7f83640894c16b46aaff60baff0268a6e5e951bc.tar.gz scummvm-rg350-7f83640894c16b46aaff60baff0268a6e5e951bc.tar.bz2 scummvm-rg350-7f83640894c16b46aaff60baff0268a6e5e951bc.zip |
SCI32: Add a game option to double the videos in KQ7 by default
Scaling works correctly with the Windows variant, which uses AVI files,
but the DOS variant uses Robot videos, and the way scaling is done
there is different, and is not working yet with KQ7 DOS. Nonetheless,
both versions are included in the game, so it's not a major issue.
Diffstat (limited to 'common')
-rw-r--r-- | common/gui_options.cpp | 3 | ||||
-rw-r--r-- | common/gui_options.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/common/gui_options.cpp b/common/gui_options.cpp index 06b6c20a61..08ee553ea6 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -85,6 +85,9 @@ const struct GameOpt { { GUIO_GAMEOPTIONS10, "gameOptionA" }, { GUIO_GAMEOPTIONS11, "gameOptionB" }, { GUIO_GAMEOPTIONS12, "gameOptionC" }, + { GUIO_GAMEOPTIONS13, "gameOptionD" }, + { GUIO_GAMEOPTIONS14, "gameOptionE" }, + { GUIO_GAMEOPTIONS15, "gameOptionF" }, { GUIO_NONE, nullptr } }; diff --git a/common/gui_options.h b/common/gui_options.h index 14d4cb9175..00d08cfea5 100644 --- a/common/gui_options.h +++ b/common/gui_options.h @@ -77,6 +77,9 @@ #define GUIO_GAMEOPTIONS10 "\061" #define GUIO_GAMEOPTIONS11 "\062" #define GUIO_GAMEOPTIONS12 "\063" +#define GUIO_GAMEOPTIONS13 "\064" +#define GUIO_GAMEOPTIONS14 "\065" +#define GUIO_GAMEOPTIONS15 "\066" #define GUIO0() (GUIO_NONE) #define GUIO1(a) (a) |