Adjust FOV change for 2p

This commit is contained in:
fickleheart 2019-02-24 11:59:21 -06:00
parent 4143c31176
commit 9d30a0f2bc
1 changed files with 1 additions and 1 deletions

View File

@ -677,7 +677,7 @@ void R_ExecuteSetViewSize(void)
fov = FixedAngle(cv_fov.value/2) + ANGLE_90;
fovtan = FINETANGENT(fov >> ANGLETOFINESHIFT);
if (splitscreen == 1) // Splitscreen FOV should be adjusted to maintain expected vertical view
fovtan *= 2;
fovtan = 17*fovtan/10;
projection = projectiony = FixedDiv(centerxfrac, fovtan);