Put some of important parameters into fixed width signed integers

Massaged test files. Fixes issue #41
This commit is contained in:
NHOrus 2017-09-11 00:13:55 +03:00
parent 43f0cb232b
commit 9e2cb3c191
7 changed files with 38 additions and 41 deletions

6
init.c
View file

@ -37,12 +37,6 @@ struct game_t game = {
.loc = LOC_START,
.limit = GAMELIMIT,
.foobar = WORD_EMPTY,
/* Initialize our LCG PRNG with parameters tested against
* Knuth vol. 2. by the original authors */
.lcg_a = 1093,
.lcg_c = 221587,
.lcg_m = 1048576,
};
long initialise(void)