From 50961af0281292c12edf2b05868ae859079ec4a2 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Thu, 13 Aug 2015 07:47:01 -0400 Subject: [PATCH] Permit not defining score and log files. --- arogue7/mach_dep.h | 3 ++- xrogue/mach_dep.h | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/arogue7/mach_dep.h b/arogue7/mach_dep.h index e98b6d6..8f0a633 100644 --- a/arogue7/mach_dep.h +++ b/arogue7/mach_dep.h @@ -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 --git a/xrogue/mach_dep.h b/xrogue/mach_dep.h index cab1f51..8360ae5 100644 --- a/xrogue/mach_dep.h +++ b/xrogue/mach_dep.h @@ -62,8 +62,8 @@ extern char *xcrypt(); #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