aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/frotz/config.h')
-rw-r--r--engines/glk/frotz/config.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/engines/glk/frotz/config.h b/engines/glk/frotz/config.h
index 1086d7e51f..7099996474 100644
--- a/engines/glk/frotz/config.h
+++ b/engines/glk/frotz/config.h
@@ -148,8 +148,9 @@ struct UserOptions {
int _undo_slots;
int _script_cols;
int _err_report_mode;
- uint _defaultForeground;
- uint _defaultBackground;
+ int _defaultForeground;
+ int _defaultBackground;
+ bool _color_enabled;
/**
* Constructor
@@ -157,6 +158,11 @@ struct UserOptions {
UserOptions();
/**
+ * Initializes the options
+ */
+ void initialize(uint hVersion);
+
+ /**
* Returns true if the game being played is one of the original Infocom releases
*/
bool isInfocom() const;