Permit not defining score and log files.

This commit is contained in:
John "Elwin" Edwards 2015-08-13 07:47:01 -04:00
parent 6813e9c5bf
commit 50961af028
2 changed files with 4 additions and 3 deletions

View file

@ -44,7 +44,8 @@
/* /*
* where scorefile should live * where scorefile should live
*/ */
#ifndef HAVE_CONFIG_H /* File locations can be defined here, if necessary. */
#if 0
#define SCOREFILE "arogue7.scr" #define SCOREFILE "arogue7.scr"
#define LOGFILE "arogue7.log" #define LOGFILE "arogue7.log"
#endif #endif

View file

@ -62,8 +62,8 @@ extern char *xcrypt();
#define FUDGE_TIME 200 #define FUDGE_TIME 200
/* file locations */ /* File locations. Define here if necessary. */
#ifndef HAVE_CONFIG_H #if 0
#define SCOREFILE "xrogue.scr" #define SCOREFILE "xrogue.scr"
#define LOGFILE "xrogue.log" #define LOGFILE "xrogue.log"
#endif #endif