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.
This commit is contained in:
John "Elwin" Edwards 2015-06-05 13:57:38 -04:00
parent cfe8f3c281
commit ec3e34544a
2 changed files with 17 additions and 8 deletions

View file

@ -12,16 +12,20 @@
* See the file LICENSE.TXT for full copyright and licensing information.
*/
/* Set these options, if not using config.h */
#ifndef HAVE_CONFIG_H
/*
* define that the wizard commands exist
*/
#define WIZARD 0
#undef WIZARD /* 0 */
/*
* define if you want to limit scores to one per class per userid
*/
#undef LIMITSCORE /* 1 */
#endif
/*
* define that rogue should "nice()" itself
*/
@ -40,10 +44,10 @@
/*
* where scorefile should live
*/
/* Uncomment if you are not using config.h */
/*#define SCOREFILE "arogue7.scr"*/
/*#define LOGFILE "arogue7.log"*/
#ifndef HAVE_CONFIG_H
#define SCOREFILE "arogue7.scr"
#define LOGFILE "arogue7.log"
#endif
/*