Mercurial > hg > early-roguelike
comparison arogue7/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 |
comparison
equal
deleted
inserted
replaced
| 158:2515e03b2f09 | 159:44a0fce4b168 |
|---|---|
| 10 * All rights reserved. | 10 * All rights reserved. |
| 11 * | 11 * |
| 12 * See the file LICENSE.TXT for full copyright and licensing information. | 12 * See the file LICENSE.TXT for full copyright and licensing information. |
| 13 */ | 13 */ |
| 14 | 14 |
| 15 /* Set these options, if not using config.h */ | |
| 16 #ifndef HAVE_CONFIG_H | |
| 15 /* | 17 /* |
| 16 * define that the wizard commands exist | 18 * define that the wizard commands exist |
| 17 */ | 19 */ |
| 18 #define WIZARD 0 | 20 #undef WIZARD /* 0 */ |
| 19 | 21 |
| 20 /* | 22 /* |
| 21 * define if you want to limit scores to one per class per userid | 23 * define if you want to limit scores to one per class per userid |
| 22 */ | 24 */ |
| 23 #undef LIMITSCORE /* 1 */ | 25 #undef LIMITSCORE /* 1 */ |
| 26 | |
| 27 #endif | |
| 24 | 28 |
| 25 /* | 29 /* |
| 26 * define that rogue should "nice()" itself | 30 * define that rogue should "nice()" itself |
| 27 */ | 31 */ |
| 28 #undef NICE /* 1 */ | 32 #undef NICE /* 1 */ |
| 38 | 42 |
| 39 | 43 |
| 40 /* | 44 /* |
| 41 * where scorefile should live | 45 * where scorefile should live |
| 42 */ | 46 */ |
| 43 /* Uncomment if you are not using config.h */ | 47 #ifndef HAVE_CONFIG_H |
| 44 /*#define SCOREFILE "arogue7.scr"*/ | 48 #define SCOREFILE "arogue7.scr" |
| 45 | 49 #define LOGFILE "arogue7.log" |
| 46 /*#define LOGFILE "arogue7.log"*/ | 50 #endif |
| 47 | 51 |
| 48 | 52 |
| 49 /* | 53 /* |
| 50 * Variables for checking to make sure the system isn't too loaded | 54 * Variables for checking to make sure the system isn't too loaded |
| 51 * for people to play | 55 * for people to play |
