Seed the game PRNG at startup

This commit is contained in:
Yamagi Burmeister 2012-06-26 14:31:01 +02:00
parent d70f510391
commit ae99562741

View file

@ -139,6 +139,9 @@ GetGameAPI(game_import_t *import)
globals.edict_size = sizeof(edict_t);
/* Initalize the PRNG */
randk_seed();
return &globals;
}