diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/Util.cpp | 10 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/shared/Util.cpp b/src/shared/Util.cpp index a35af77e7f6..33bae61dfbc 100644 --- a/src/shared/Util.cpp +++ b/src/shared/Util.cpp @@ -36,27 +36,27 @@ static MTRandTSS mtRand; int32 irand (int32 min, int32 max) { - return int32 (mtRand.get ().randInt (max - min)) + min; + return int32 (mtRand.get ().randInt (max - min)) + min; } uint32 urand (uint32 min, uint32 max) { - return mtRand.get ().randInt (max - min) + min; + return mtRand.get ().randInt (max - min) + min; } int32 rand32 () { - return mtRand.get ().randInt (); + return mtRand.get ().randInt (); } double rand_norm(void) { - return mtRand.get ().randExc (); + return mtRand.get ().randExc (); } double rand_chance (void) { - return mtRand.get ().randExc (100.0); + return mtRand.get ().randExc (100.0); } Tokens StrSplit(const std::string &src, const std::string &sep) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 328f7d8c558..ba16411640e 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "6973" + #define REVISION_NR "6982" #endif // __REVISION_NR_H__ |