Mercurial > hg > early-roguelike
comparison urogue/main.c @ 273:51ddbe7b992d
UltraRogue: begin autoconfiscation.
Build options can now be set with configure.
author | John "Elwin" Edwards |
---|---|
date | Mon, 04 Sep 2017 21:08:09 -0400 |
parents | 1db299e868b8 |
children |
comparison
equal
deleted
inserted
replaced
272:1db299e868b8 | 273:51ddbe7b992d |
---|---|
24 #include <signal.h> | 24 #include <signal.h> |
25 #include <stdlib.h> | 25 #include <stdlib.h> |
26 #include <errno.h> | 26 #include <errno.h> |
27 #include "rogue.h" | 27 #include "rogue.h" |
28 | 28 |
29 #define SAVEDIR "." | 29 #ifdef HAVE_CONFIG_H |
30 #define SCOREFILE "/var/local/games/roguelike/urogue.scr" | 30 #include "config.h" |
31 #define LOGFILE "/var/local/games/roguelike/urogue.log" | 31 #endif |
32 | 32 |
33 FILE *fd_score = NULL; | 33 FILE *fd_score = NULL; |
34 FILE *file_log = NULL; | 34 FILE *file_log = NULL; |
35 | 35 |
36 /* Command line options */ | 36 /* Command line options */ |