changeset 204:4b1999ac91cf

Permit not defining score and log files.
author John "Elwin" Edwards
date Thu, 13 Aug 2015 07:47:01 -0400
parents aa8e1fc62926
children 6e6fb0955095
files arogue7/mach_dep.h xrogue/mach_dep.h
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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