diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp index af6edecdc2..d2920fd64b 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -90,7 +90,6 @@ void RandomSource::setSeed(uint32 seed) { } uint RandomSource::getRandomNumber(uint max) { - /* TODO: my own random number generator */ _randSeed = 0xDEADBF03 * (_randSeed + 1); _randSeed = (_randSeed >> 13) | (_randSeed << 19); return _randSeed % (max + 1); |