mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-22 01:01:45 +00:00
Remove the min() and max() calls.
This commit is contained in:
parent
56fd29a42a
commit
4b653a0b12
1 changed files with 1 additions and 1 deletions
|
@ -1135,7 +1135,7 @@ INT32 R_GetRollAngle(angle_t rollangle)
|
|||
ra += (ROTANGDIFF/2);
|
||||
#endif
|
||||
ra /= ROTANGDIFF;
|
||||
return max(0, min(ra, ROTANGLES));
|
||||
return ra;
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue