From 95548cb1caad95933e2b36df9a13af070b733b04 Mon Sep 17 00:00:00 2001 From: gepard1984 Date: Tue, 17 Jan 2012 18:06:34 +0000 Subject: Enabled Mersenne Twister MT19937 as random number generator instead of standard `rand()` function (follow-up to r14865, r14870). - It fixes issues caused by RAND_MAX being only 32k in Windows system (bugreport:1927, bugreport:86). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15483 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/random.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/common/random.c') diff --git a/src/common/random.c b/src/common/random.c index b7f2c080c..6bdcaca2f 100644 --- a/src/common/random.c +++ b/src/common/random.c @@ -1,6 +1,7 @@ // Copyright (c) Athena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder +#include "../common/showmsg.h" #include "../common/timer.h" // gettick #include "random.h" #if defined(WIN32) @@ -30,6 +31,7 @@ void rnd_init(void) seed += (uint32)gettid(); #endif // HAVE_GETTID #endif + ShowInfo("Initializing random number generator.\n") init_genrand(seed); } -- cgit v1.2.3-70-g09d2