summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/state.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-11 03:36:07 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-11 03:36:07 +0000
commit9d048940efbcf150729acca1e4962626a5db2299 (patch)
tree213cbe40ac33c9c8bda4ec20c409bbab727b8cff /crawl-ref/source/state.cc
parentda22878d26b040a59f621a3a79730ee4dd7f9816 (diff)
downloadcrawl-ref-9d048940efbcf150729acca1e4962626a5db2299.tar.gz
crawl-ref-9d048940efbcf150729acca1e4962626a5db2299.zip
A limited set of commands are now available to use during arena mode:
look around ('x'), message history (Control-P) and suspend game (Control-Z). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8408 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/state.cc')
-rw-r--r--crawl-ref/source/state.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/state.cc b/crawl-ref/source/state.cc
index 001b6addb0..febc6e872d 100644
--- a/crawl-ref/source/state.cc
+++ b/crawl-ref/source/state.cc
@@ -27,13 +27,13 @@ game_state::game_state()
: mouse_enabled(false), waiting_for_command(false),
terminal_resized(false), io_inited(false), need_save(false),
saving_game(false), updating_scores(false), seen_hups(0),
- map_stat_gen(false), arena(false), unicode_ok(false), glyph2strfn(NULL),
- multibyte_strlen(NULL), terminal_resize_handler(NULL),
- terminal_resize_check(NULL), doing_prev_cmd_again(false),
- prev_cmd(CMD_NO_CMD), repeat_cmd(CMD_NO_CMD), cmd_repeat_count(0),
- cmd_repeat_goal(0), prev_repetition_turn(0),
- cmd_repeat_started_unsafe(false), input_line_curr(0),
- level_annotation_shown(false)
+ map_stat_gen(false), arena(false), arena_suspended(false),
+ unicode_ok(false), glyph2strfn(NULL), multibyte_strlen(NULL),
+ terminal_resize_handler(NULL), terminal_resize_check(NULL),
+ doing_prev_cmd_again(false), prev_cmd(CMD_NO_CMD),
+ repeat_cmd(CMD_NO_CMD), cmd_repeat_count(0), cmd_repeat_goal(0),
+ prev_repetition_turn(0), cmd_repeat_started_unsafe(false),
+ input_line_curr(0), level_annotation_shown(false)
{
reset_cmd_repeat();
reset_cmd_again();