fix U438 - text formatting

"List of game options" from `? f' misaligns the entries for runmode
and scroll_amount (at least for tty display).  Shorten their descriptions
so that they fit without squeezing out spaces.
This commit is contained in:
nethack.rankin
2003-04-30 23:27:31 +00:00
parent 492bdb672b
commit 9672d39e13
2 changed files with 4 additions and 3 deletions

View File

@@ -47,6 +47,7 @@ fix were changing message that wasn't being displayed
immediate encumbrance feedback when removing gauntlets of power
make deliberately flying down the Castle's trap doors consistent with falling
give more explicit feedback for exploding bag of holding
help display for "list of game options" misformats runmode and scroll_amount
Platform- and/or Interface-Specific Fixes

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)options.c 3.4 2003/01/08 */
/* SCCS Id: @(#)options.c 3.4 2003/04/30 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
@@ -291,11 +291,11 @@ static struct Comp_Opt
PL_CSIZ, DISP_IN_GAME },
{ "role", "your starting role (e.g., Barbarian, Valkyrie)",
PL_CSIZ, DISP_IN_GAME },
{ "runmode", "display updating frequency when `running' or `travelling'",
{ "runmode", "display frequency when `running' or `travelling'",
sizeof "teleport", SET_IN_GAME },
{ "scores", "the parts of the score list you wish to see",
32, SET_IN_GAME },
{ "scroll_amount", "scroll the map this amount when scroll_margin is reached",
{ "scroll_amount", "amount to scroll map when scroll_margin is reached",
20, DISP_IN_GAME }, /*WC*/
{ "scroll_margin", "scroll map when this far from the edge", 20, DISP_IN_GAME }, /*WC*/
#ifdef MSDOS