mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Remove the min() and max() calls.
This commit is contained in:
parent
f65ac6feab
commit
a187538157
1 changed files with 1 additions and 1 deletions
|
|
@ -1135,7 +1135,7 @@ INT32 R_GetRollAngle(angle_t rollangle)
|
||||||
ra += (ROTANGDIFF/2);
|
ra += (ROTANGDIFF/2);
|
||||||
#endif
|
#endif
|
||||||
ra /= ROTANGDIFF;
|
ra /= ROTANGDIFF;
|
||||||
return max(0, min(ra, ROTANGLES));
|
return ra;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue