# HG changeset patch # User John "Elwin" Edwards # Date 1439466421 14400 # Node ID 4b1999ac91cff8788ee4aff73df6d4cb2e1e6ba0 # Parent aa8e1fc62926baf1aaf0f05d8c236b271a29cae6 Permit not defining score and log files. diff -r aa8e1fc62926 -r 4b1999ac91cf arogue7/mach_dep.h --- a/arogue7/mach_dep.h Thu Aug 13 07:38:57 2015 -0400 +++ b/arogue7/mach_dep.h Thu Aug 13 07:47:01 2015 -0400 @@ -44,7 +44,8 @@ /* * where scorefile should live */ -#ifndef HAVE_CONFIG_H +/* File locations can be defined here, if necessary. */ +#if 0 #define SCOREFILE "arogue7.scr" #define LOGFILE "arogue7.log" #endif diff -r aa8e1fc62926 -r 4b1999ac91cf xrogue/mach_dep.h --- a/xrogue/mach_dep.h Thu Aug 13 07:38:57 2015 -0400 +++ b/xrogue/mach_dep.h Thu Aug 13 07:47:01 2015 -0400 @@ -62,8 +62,8 @@ #define FUDGE_TIME 200 -/* file locations */ -#ifndef HAVE_CONFIG_H +/* File locations. Define here if necessary. */ +#if 0 #define SCOREFILE "xrogue.scr" #define LOGFILE "xrogue.log" #endif