mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
gr_shearing doesn't exist in master!
This commit is contained in:
parent
68bec970a3
commit
1dd95f5e3b
1 changed files with 5 additions and 1 deletions
|
|
@ -7503,7 +7503,11 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall
|
||||||
}
|
}
|
||||||
pitch = thiscam->pitch + (angle_t)FixedMul(pitch - thiscam->pitch, camspeed/4);
|
pitch = thiscam->pitch + (angle_t)FixedMul(pitch - thiscam->pitch, camspeed/4);
|
||||||
|
|
||||||
if (rendermode == render_opengl && !cv_grshearing.value)
|
if (rendermode == render_opengl
|
||||||
|
#ifdef GL_SHADERS/* just so we can't possibly forget about it */
|
||||||
|
&& !cv_grshearing.value
|
||||||
|
#endif
|
||||||
|
)
|
||||||
distxy = FixedMul(dist, FINECOSINE((pitch>>ANGLETOFINESHIFT) & FINEMASK));
|
distxy = FixedMul(dist, FINECOSINE((pitch>>ANGLETOFINESHIFT) & FINEMASK));
|
||||||
else
|
else
|
||||||
distxy = dist;
|
distxy = dist;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue