From: nethack.allison Date: Sun, 3 Nov 2002 15:41:48 +0000 (+0000) Subject: bold titles on Options menu (from ) X-Git-Tag: MOVE2GIT~2348 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f65d67a2c47c79416fc94184a8e2fcfde2482d7;p=nethack bold titles on Options menu (from ) --- diff --git a/src/options.c b/src/options.c index c99ce0e1a..04bd4e608 100644 --- a/src/options.c +++ b/src/options.c @@ -2279,7 +2279,7 @@ doset() start_menu(tmpwin); any.a_void = 0; - add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_NONE, + add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_BOLD, "Booleans (selecting will toggle value):", MENU_UNSELECTED); any.a_int = 0; /* first list any other non-modifiable booleans, then modifiable ones */ @@ -2311,7 +2311,7 @@ doset() indexoffset = boolcount; any.a_void = 0; add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_NONE, "", MENU_UNSELECTED); - add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_NONE, + add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_BOLD, "Compounds (selecting will prompt for new value):", MENU_UNSELECTED); @@ -2352,7 +2352,7 @@ doset() } #ifdef PREFIXES_IN_USE add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_NONE, "", MENU_UNSELECTED); - add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_NONE, + add_menu(tmpwin, NO_GLYPH, &any, 0, 0, ATR_BOLD, "Variable playground locations:", MENU_UNSELECTED); for (i = 0; i < PREFIX_COUNT; i++) doset_add_menu(tmpwin, fqn_prefix_names[i], 0);