Quiet down database compilation. Observe RNG stability.

At this commit, we can tell that the seeded-RNG nehavopr of this 430
branch is identical to that of master because the axebear log - which
includes randomization of dwarf spawning and the reservoir word -
yields the same results in both versions.
This commit is contained in:
Eric S. Raymond 2023-03-14 10:48:53 -04:00
parent 184e981be3
commit c3bb0dae75

6
init.c
View file

@ -180,7 +180,7 @@ void initialise(void) {
}
static int raw_init(void) {
printf("Couldn't find adventure.data, using adventure.text...\n");
//printf("Couldn't find adventure.data, using adventure.text...\n");
FILE *OPENED=fopen("adventure.text","r" /* NOT binary */);
if(!OPENED){printf("Can't read adventure.text!\n"); exit(0);}
@ -634,7 +634,7 @@ L1993: SETPRM(1,LINUSE,LINSIZ);
SETPRM(15,CLSSES,CLSMAX);
SETPRM(17,HNTMAX,HNTSIZ);
SETPRM(19,TRNVLS,TRNSIZ);
RSPEAK(267);
//RSPEAK(267);
TYPE0();
}
@ -661,7 +661,7 @@ static bool quick_init(void) {
}
static void quick_save(void) {
printf("Writing adventure.data...\n");
//printf("Writing adventure.data...\n");
f = fopen("adventure.data",WRITE_MODE);
if(f == NULL){printf("Can't open file!\n"); return;}
init_reading = false;