view rogue3/machdep.h @ 77:ae7643e1194b

arogue5: fix "More" prompt appearing in the wrong place. The magic and monster detection routines printed "--More--" to cw instead of msgw, making it appear at the @-sign instead of on the top line.
author John "Elwin" Edwards <elwin@sdf.org>
date Sun, 09 Sep 2012 08:55:11 -0700
parents c6d58901ddc0
children 07c4d4883ef2
line wrap: on
line source

/*
 * machine dependicies
 *
 * %G% (Berkeley) %W%
 *
 * Rogue: Exploring the Dungeons of Doom
 * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman
 * All rights reserved.
 *
 * See the file LICENSE.TXT for full copyright and licensing information.
 */

/*
 * Variables for checking to make sure the system isn't too loaded
 * for people to play
 */
/* Comment out MAXLOAD or MAXUSERS to disable a check */

#define AUTHORUID        0
#define	MAXUSERS	25	/* max number of users for this game */
#define	MAXLOAD		40	/* 10 * max 15 minute load average */
#define	CHECKTIME	15	/* number of minutes between load checks */

/* Locations of various files.  Comment out to disable. */
/* The list of top ten scores. */
#define SCOREFILE "/var/local/games/roguelike/rogue3.scr"
/* A text file with a record of every game. */
#define LOGFILE   "/var/local/games/roguelike/rogue3.log"
/* A standard location for saved games. */
#define SAVEDIR   "/var/local/games/roguelike/rogue3save/"