]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamec/miscfunctions.c
fix for previous printstats patch (strings were messed up by long playernames)
[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