]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - mathlib.h
added separate cl_nopred cvar to use when playing on qw servers since
[xonotic/darkplaces.git] / mathlib.h
index f32e409824d8e7a5c91dcd342695e9628d190bbe..0acb9500627fc2e3aa20f3c20f83c304e05273d3 100644 (file)
--- a/mathlib.h
+++ b/mathlib.h
@@ -311,12 +311,12 @@ typedef struct randomseed_s
 randomseed_t;
 
 void Math_RandomSeed_Reset(randomseed_t *r);
-void Math_RandomSeed_FromInt(randomseed_t *r, unsigned int n);
+void Math_RandomSeed_FromInts(randomseed_t *r, unsigned int s0, unsigned int s1, unsigned int s2, unsigned int s3);
 unsigned long long Math_rand64(randomseed_t *r);
 float Math_randomf(randomseed_t *r);
 float Math_crandomf(randomseed_t *r);
 float Math_randomrangef(randomseed_t *r, float minf, float maxf);
-int Math_randomrangei(randomseed_t *r, int min, int max);
+int Math_randomrangei(randomseed_t *r, int mini, int maxi);
 
 void Mathlib_Init(void);