mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Whitespace.
This commit is contained in:
parent
00c61fe07c
commit
bf18436ad5
1 changed files with 3 additions and 5 deletions
|
@ -445,8 +445,7 @@ VectorNormalize (vec3_t v)
|
|||
float length;
|
||||
|
||||
length = DotProduct (v, v);
|
||||
if (length)
|
||||
{
|
||||
if (length) {
|
||||
float ilength;
|
||||
|
||||
length = sqrt (length);
|
||||
|
@ -579,7 +578,6 @@ FloorDivMod (double numer, double denom, int *quotient, int *rem)
|
|||
#endif
|
||||
|
||||
if (numer >= 0.0) {
|
||||
|
||||
x = floor (numer / denom);
|
||||
q = (int) x;
|
||||
r = (int) floor (numer - (x * denom));
|
||||
|
|
Loading…
Reference in a new issue