freebsd-ports/games/openxcom/files/patch-src__Engine__RNG.cpp
Dmitry Marakasov 007a508e70 - Update to 1.0
PR:		145239
Submitted by:	madpilot@FreeBSD.org
2014-09-11 18:08:37 +00:00

19 lines
548 B
C++

--- src/Engine/RNG.cpp.orig 2014-06-13 23:14:43.000000000 +0400
+++ src/Engine/RNG.cpp 2014-09-11 18:52:08.000000000 +0400
@@ -17,6 +17,7 @@
* along with OpenXcom. If not, see <http://www.gnu.org/licenses/>.
*/
#include "RNG.h"
+#include <limits>
#include <math.h>
#include <time.h>
@@ -86,7 +87,7 @@
double generate(double min, double max)
{
double num = next();
- return (double)(num / ((double)UINT64_MAX / (max - min)) + min);
+ return (double)(num / ((double)std::numeric_limits<uint64_t>::max() / (max - min)) + min);
}
/**