diff xrogue/mach_dep.h @ 159:44a0fce4b168

arogue7, xrogue: fix configure's wizardmode and limitscore options. WIZARD and LIMITSCORE, when set by options to './configure', are no longer overridden in mach_dep.h.
author John "Elwin" Edwards
date Fri, 05 Jun 2015 13:57:38 -0400
parents 3e1146666ae5
children 4b1999ac91cf
line wrap: on
line diff
--- a/xrogue/mach_dep.h	Thu Jun 04 17:08:40 2015 -0400
+++ b/xrogue/mach_dep.h	Fri Jun 05 13:57:38 2015 -0400
@@ -19,7 +19,9 @@
 /*
  * define/undefine that the wizard commands exist
  */
+#ifndef HAVE_CONFIG_H
 #undef WIZARD
+#endif
 
 #if defined(_WIN32)
 #define fstat _fstat
@@ -49,8 +51,10 @@
  * define if you want to limit scores to one per class per userid
  */
 
+#ifndef HAVE_CONFIG_H
 /* #define LIMITSCORE 1*/
 #undef LIMITSCORE
+#endif
 
 /* 
  * fudge factor allowed in time for saved game
@@ -59,6 +63,7 @@
 #define FUDGE_TIME      200
 
 /* file locations */
-/* uncomment if not using config.h */
-/*#define SCOREFILE "xrogue.scr"*/
-/*#define LOGFILE "xrogue.log"*/
+#ifndef HAVE_CONFIG_H
+#define SCOREFILE "xrogue.scr"
+#define LOGFILE "xrogue.log"
+#endif