options fixes

Several boolean options were mis-categorized and became
unsettable during play.  Also, the eight_bit_tty option got
dropped into limbo.  Fixing that revealed a typo which would
have broken compilation for MSDOS.

     `eight_bit_tty' has been renamed `wc_eight_bit_input',
but its only use anywhere in the code is for output.
This commit is contained in:
nethack.rankin
2002-02-06 01:36:31 +00:00
parent 02e2c671ed
commit fec866a08c
2 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
/* SCCS Id: @(#)wintty.c 3.4 2000/06/27 */
/* SCCS Id: @(#)wintty.c 3.4 2002/02/05 */
/* Copyright (c) David Cohrs, 1991 */
/* NetHack may be freely redistributed. See license for details. */
@@ -46,9 +46,9 @@ extern char mapped_menu_cmds[]; /* from options.c */
struct window_procs tty_procs = {
"tty",
#ifdef MSDOS
WC_TILED_MAP|WC_TILES_16x16|WC_TILES_8x16|WC_ASCII_MAP
WC_TILED_MAP|WC_TILES_16x16|WC_TILES_8x16|WC_ASCII_MAP|
#endif
WC_COLOR|WC_HILITE_PET|WC_INVERSE,
WC_COLOR|WC_HILITE_PET|WC_INVERSE|WC_EIGHT_BIT_IN,
tty_init_nhwindows,
tty_player_selection,
tty_askname,