UltraRogue: add the -n option.

This commit is contained in:
John "Elwin" Edwards 2017-02-09 16:29:45 -05:00
parent ed27d7a24f
commit 403d9ec171
4 changed files with 35 additions and 6 deletions

View file

@ -1686,6 +1686,7 @@ extern int waswizard; /* Was a wizard sometime */
extern int canwizard; /* Will be permitted to do this */
extern int askme; /* Ask about unidentified things */
extern int moving; /* move using 'm' command */
extern int use_savedir; /* Savefile is in system savedir */
extern int inv_type; /* Inven style. Bool so options works */
extern char take; /* Thing the rogue is taking */
@ -1809,6 +1810,7 @@ char *md_strdup(const char *s);
long md_random(void);
void md_srandom(long seed);
int md_readchar(WINDOW *win);
int md_getuid(void);
#define NOOP(x) (x += 0)
#define CCHAR(x) ( (char) (x & A_CHARTEXT) )