From 8ddeb66959f5a40192940260932636196ab8151f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 1 Aug 2008 00:16:13 +0000 Subject: windows wants rand() --- src/math/functions.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/math/functions.cc b/src/math/functions.cc index 2942eb5..c4b832c 100644 --- a/src/math/functions.cc +++ b/src/math/functions.cc @@ -34,12 +34,12 @@ int max(int a, int b) float randomf(const float max) { - return ((float) random() / (float) RAND_MAX) * max; + return ((float) rand() / (float) RAND_MAX) * max; } unsigned randomi(const unsigned int max) { - return ((unsigned int)(random() % max)); + return ((unsigned int)(rand() % max)); } float degrees180f(float angle) -- cgit v1.2.3