summaryrefslogtreecommitdiff
path: root/src/common/random.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/random.c')
-rw-r--r--src/common/random.c2
1 files changed, 2 insertions, 0 deletions
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);
}