1
0
Fork 0

Fixed a warning in FastRandom.

This commit is contained in:
Mattes D 2014-08-22 11:12:44 +02:00
parent d2d63b8a05
commit 33b5952532
1 changed files with 1 additions and 1 deletions

View File

@ -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);