aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.h
diff options
context:
space:
mode:
authorMartin Kiewitz2016-08-15 19:59:46 +0200
committerMartin Kiewitz2016-08-15 19:59:46 +0200
commitece303d7e337dbc35240d719b25d7e86b3809d92 (patch)
tree359d87cf8b104fdee6b582ba1792dbbddf3a83c2 /engines/sci/sci.h
parent21e82aef5f256e6d6daba9266c936569cf2e1eab (diff)
downloadscummvm-rg350-ece303d7e337dbc35240d719b25d7e86b3809d92.tar.gz
scummvm-rg350-ece303d7e337dbc35240d719b25d7e86b3809d92.tar.bz2
scummvm-rg350-ece303d7e337dbc35240d719b25d7e86b3809d92.zip
SCI: Move GUI-options to sci.h
Diffstat (limited to 'engines/sci/sci.h')
-rw-r--r--engines/sci/sci.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index a42095259b..0425d21564 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -45,6 +45,18 @@ struct ADGameDescription;
*/
namespace Sci {
+// GUI-options, primarily used by detection_tables.h
+#define GAMEOPTION_PREFER_DIGITAL_SFX GUIO_GAMEOPTIONS1
+#define GAMEOPTION_ORIGINAL_SAVELOAD GUIO_GAMEOPTIONS2
+#define GAMEOPTION_FB01_MIDI GUIO_GAMEOPTIONS3
+#define GAMEOPTION_JONES_CDAUDIO GUIO_GAMEOPTIONS4
+#define GAMEOPTION_KQ6_WINDOWS_CURSORS GUIO_GAMEOPTIONS5
+#define GAMEOPTION_SQ4_SILVER_CURSORS GUIO_GAMEOPTIONS6
+#define GAMEOPTION_EGA_UNDITHER GUIO_GAMEOPTIONS7
+// HIGH_RESOLUTION_GRAPHICS availability is checked for in SciEngine::run()
+#define GAMEOPTION_HIGH_RESOLUTION_GRAPHICS GUIO_GAMEOPTIONS8
+#define GAMEOPTION_ENABLE_BLACK_LINED_VIDEO GUIO_GAMEOPTIONS9
+
struct EngineState;
class Vocabulary;
class ResourceManager;