From a741be8e8f599a101167d4eaeb41ef9a38b29947 Mon Sep 17 00:00:00 2001 From: Sabian Roberts <31491602+sabianroberts@users.noreply.github.com> Date: Sat, 28 Sep 2024 18:26:38 +0100 Subject: [PATCH] Fix viewmodel lag pitch going the wrong way --- cl_dll/view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_dll/view.cpp b/cl_dll/view.cpp index da5f4f96..e1e33455 100644 --- a/cl_dll/view.cpp +++ b/cl_dll/view.cpp @@ -903,7 +903,7 @@ void V_CalcViewModelLag(ref_params_t* pparams, Vector& origin, Vector& angles, V // FIXME: These are the old settings that caused too many exposed polys on some models origin = origin + forward * (-pitch * 0.035f); origin = origin + right * (-pitch * 0.03f); - origin = origin + up * (-pitch * 0.02f); + origin = origin + up * (pitch * 0.02f); } }