summaryrefslogtreecommitdiff
path: root/src/options.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
commit902611ac55dbd2c967f244b27c54d37540964c47 (patch)
tree267b68cd64a1941130092348f8516e2af647681d /src/options.cc
parente1273e8666e5c03c36b55a4fec80f6f76270ee10 (diff)
Move non-boolean options to options.cc too
Diffstat (limited to 'src/options.cc')
-rw-r--r--src/options.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/options.cc b/src/options.cc
index e4acaab4..1b0baccf 100644
--- a/src/options.cc
+++ b/src/options.cc
@@ -82,3 +82,21 @@ bool_ joke_monsters;
bool_ point_based;
bool_ preserve;
bool_ no_selling;
+
+//
+// Other options
+//
+
+bool_ cheat_peek; /* Peek into object creation */
+bool_ cheat_hear; /* Peek into monster creation */
+bool_ cheat_room; /* Peek into dungeon creation */
+bool_ cheat_xtra; /* Peek into something else */
+bool_ cheat_live; /* Allow player to avoid death */
+
+byte hitpoint_warn; /* Hitpoint warning (0 to 9) */
+
+byte delay_factor; /* Delay factor (0 to 9) */
+
+s16b autosave_freq; /* Autosave frequency */
+bool_ autosave_t; /* Timed autosave */
+bool_ autosave_l; /* Autosave before entering new levels */