From b1db9077a41ae22e589b0e9919378178d213c828 Mon Sep 17 00:00:00 2001 From: James R Date: Sat, 21 Mar 2020 12:48:51 -0700 Subject: [PATCH] splitscreen -> r_splitscreen --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index 85f93602b..e7bdb5aa6 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -7513,7 +7513,7 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall else distxy = dist; distz = -FixedMul(dist, FINESINE((pitch>>ANGLETOFINESHIFT) & FINEMASK)); - if (splitscreen == 1) // 2 player is weird, this helps keep players on screen + if (r_splitscreen == 1) // 2 player is weird, this helps keep players on screen distz = 3*distz/5; x = mo->x - FixedMul(FINECOSINE((angle>>ANGLETOFINESHIFT) & FINEMASK), distxy);