Remove the min() and max() calls.

This commit is contained in:
Jaime Passos 2019-12-26 21:36:35 -03:00
parent 56fd29a42a
commit 4b653a0b12

View file

@ -1135,7 +1135,7 @@ INT32 R_GetRollAngle(angle_t rollangle)
ra += (ROTANGDIFF/2);
#endif
ra /= ROTANGDIFF;
return max(0, min(ra, ROTANGLES));
return ra;
}
//