]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamec/miscfunctions.c
- removed rocket launcher from nexdm15 (wasn't there in 1.2.1)
[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