aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJohannes Schickel2016-01-22 01:20:37 +0100
committerJohannes Schickel2016-01-22 01:20:37 +0100
commit354a3af717bb1c426d8ad793aa2201c77aad41fd (patch)
tree28356cc60689f39176e5f4a5542d75738f70c87a /common
parentb166cb84e2b57714c1817d4e69e98acd2cd455b6 (diff)
downloadscummvm-rg350-354a3af717bb1c426d8ad793aa2201c77aad41fd.tar.gz
scummvm-rg350-354a3af717bb1c426d8ad793aa2201c77aad41fd.tar.bz2
scummvm-rg350-354a3af717bb1c426d8ad793aa2201c77aad41fd.zip
COMMON: Add another GUIO game option flag.
We still can only display 7 options in our GUI though. Blame m_kiewitz if anybody runs into that issue now. He wanted this.
Diffstat (limited to 'common')
-rw-r--r--common/gui_options.cpp1
-rw-r--r--common/gui_options.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/common/gui_options.cpp b/common/gui_options.cpp
index 679d04b50b..641daf5ae6 100644
--- a/common/gui_options.cpp
+++ b/common/gui_options.cpp
@@ -72,6 +72,7 @@ const struct GameOpt {
{ GUIO_GAMEOPTIONS5, "gameOption5" },
{ GUIO_GAMEOPTIONS6, "gameOption6" },
{ GUIO_GAMEOPTIONS7, "gameOption7" },
+ { GUIO_GAMEOPTIONS8, "gameOption8" },
{ GUIO_NONE, 0 }
};
diff --git a/common/gui_options.h b/common/gui_options.h
index 83944465c4..c11fc9e7b8 100644
--- a/common/gui_options.h
+++ b/common/gui_options.h
@@ -66,6 +66,7 @@
#define GUIO_GAMEOPTIONS5 "\054"
#define GUIO_GAMEOPTIONS6 "\055"
#define GUIO_GAMEOPTIONS7 "\056"
+#define GUIO_GAMEOPTIONS8 "\057"
#define GUIO0() (GUIO_NONE)
#define GUIO1(a) (a)