summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/utils.c b/utils.c
index e349368..83bfdd2 100644
--- a/utils.c
+++ b/utils.c
@@ -54,10 +54,9 @@ char* getLine(FILE *dictionary, int lineNumber)
int getRandomNumber(int min, int max, char *question)
{
- // Adding Randomize Time Values for Less Chances of Running into Seed Collisions
- struct timeval randtime;
- gettimeofday(&randtime,NULL);
- srand(((randtime.tv_sec * 100) + time(NULL) * numerize(question)) + ((randtime.tv_usec / 100) - time(NULL) * numerize(question)));
+ struct timespec s;
+ clock_gettime(CLOCK_REALTIME, &s);
+ srand(s.tv_nsec * numerize(question));
- return ((rand() % (max - min + 1)) + 1);
+ return ((rand() % (max - min + 1)) + min);
}