X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=main.c;h=6ba8897825bd286f32d392202c17d876f99348d3;hp=90f60033d883790734dc94c6bebe51107540eb63;hb=4993be4c086b2a81dbf5af5a2c687cf2f0c93d21;hpb=fdd72c64171ce7a7a9983930c34b31884b45aaf7 diff --git a/main.c b/main.c index 90f6003..6ba8897 100644 --- a/main.c +++ b/main.c @@ -46,7 +46,6 @@ FILE *logfp; bool oldstyle = false; bool editline = true; bool prompt = true; -lcg_state lcgstate; extern void initialise(); extern void score(long); @@ -114,9 +113,9 @@ int main(int argc, char *argv[]) /* Initialize our LCG PRNG with parameters tested against * Knuth vol. 2. by the original authors */ - lcgstate.a = 1093; - lcgstate.c = 221587; - lcgstate.m = 1048576; + game.lcg_a = 1093; + game.lcg_c = 221587; + game.lcg_m = 1048576; srand(time(NULL)); long seedval = (long)rand(); set_seed(seedval);