|
@@ -46,7 +46,7 @@ class Math {
|
|
|
public:
|
|
|
Math() {} // useless to instance
|
|
|
|
|
|
- static const uint64_t RANDOM_MAX = 4294967295;
|
|
|
+ static const uint64_t RANDOM_MAX = 0xFFFFFFFF;
|
|
|
|
|
|
static _ALWAYS_INLINE_ double sin(double p_x) { return ::sin(p_x); }
|
|
|
static _ALWAYS_INLINE_ float sin(float p_x) { return ::sinf(p_x); }
|