Skip to content

Commit

Permalink
Fix viewmodel lag pitch going the wrong way
Browse files Browse the repository at this point in the history
  • Loading branch information
sabianroberts committed Sep 28, 2024
1 parent c742967 commit a741be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cl_dll/view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit a741be8

Please sign in to comment.