Partial revert 89c503135a: fix aiming range for downward slope camera

This commit is contained in:
James R 2023-12-23 08:55:47 -08:00
parent 8dc35c0fe3
commit 8f9c383188

View file

@ -761,7 +761,7 @@ INT16 G_SoftwareClipAimingPitch(INT32 *aiming)
INT32 limitangle;
// note: the current software mode implementation doesn't have true perspective
limitangle = ANGLE_45; // Some viewing fun, but not too far down...
limitangle = ANGLE_90 - ANG10; // Some viewing fun, but not too far down...
if (*aiming > limitangle)
*aiming = limitangle;