]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamec/miscfunctions.c
- resized strength texture to 1x1 pixel (512x512 for a monochrome texture is insane :P)
[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