aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/Random.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Common/Random.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CPP/Common/Random.cpp b/CPP/Common/Random.cpp
index fbdb8c9..6ef9f1a 100644
--- a/CPP/Common/Random.cpp
+++ b/CPP/Common/Random.cpp
@@ -12,11 +12,11 @@
12 12
13#include "Random.h" 13#include "Random.h"
14 14
15void CRandom::Init(unsigned int seed) { srand(seed); } 15void CRandom::Init(unsigned seed) { srand(seed); }
16 16
17void CRandom::Init() 17void CRandom::Init()
18{ 18{
19 Init((unsigned int) 19 Init((unsigned)
20 #ifdef _WIN32 20 #ifdef _WIN32
21 GetTickCount() 21 GetTickCount()
22 #else 22 #else