]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamec/miscfunctions.c
no more "x frags left" sounds in runematch/domination
[divverent/nexuiz.git] / data / qcsrc / server / gamec / miscfunctions.c
1 float math_mod(float a, float b)
2 {
3         return a - (floor(a / b) * b);
4 }
5