From: Christoph Sommer Date: Mon, 26 Jun 2006 14:21:57 +0000 (+0000) Subject: Tried fixing assert error on Windows X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=d1b1b4272a84696689574b3bcdc2ee5bd39a9796;p=supertux.git Tried fixing assert error on Windows SVN-Revision: 3764 --- diff --git a/src/random_generator.cpp b/src/random_generator.cpp index ecb95ba9d..c8eac09d4 100644 --- a/src/random_generator.cpp +++ b/src/random_generator.cpp @@ -53,7 +53,7 @@ RandomGenerator::~RandomGenerator() { int RandomGenerator::srand(int x) { while (x == 0) // random seed of zero means - x = time(0); // randomize with time + x = (time(0) % RAND_MAX); // randomize with time assert(x < RAND_MAX); // only allow posative 31-bit seeds assert(sizeof(int) >= 4); srandom(x);