diff options
author | Mattes D <github@xoft.cz> | 2014-08-22 11:12:44 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-22 11:12:44 +0200 |
commit | 33b595253209cefcf2bda42ab227b84fad6c600f (patch) | |
tree | d3a3405053856b2ce0969716c5189f2fb6365243 /src | |
parent | World: Report chunk count for the spawn area. (diff) | |
download | cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.gz cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.bz2 cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.lz cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.xz cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.zst cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/FastRandom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FastRandom.h b/src/FastRandom.h index 2061a3958..cebebad96 100644 --- a/src/FastRandom.h +++ b/src/FastRandom.h @@ -45,7 +45,7 @@ public: float NextFloat(float a_Range, int a_Salt); /** Returns a random float between 0 and 1. */ - float NextFloat(void) { return NextFloat(1); }; + float NextFloat(void) { return NextFloat(1); } /** Returns a random int in the range [a_Begin .. a_End] */ int GenerateRandomInteger(int a_Begin, int a_End); |