rogue3: move file locations from Makefile to machdep.h

This commit is contained in:
John "Elwin" Edwards 2009-11-11 12:28:25 +00:00
parent bbec0d0514
commit ce560d937c
2 changed files with 9 additions and 3 deletions

View file

@ -19,3 +19,11 @@
#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 "/usr/local/games/roguelike/rogue3.scr"
/* A text file with a record of every game. */
#define LOGFILE "/usr/local/games/roguelike/rogue3.log"
/* A standard location for saved games. */
#define SAVEDIR "/usr/local/games/roguelike/rogue3save/"