Remove the min() and max() calls.

This commit is contained in:
Jaime Passos 2019-12-26 21:36:35 -03:00
parent f65ac6feab
commit a187538157

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;
}
//