Crouch stutter fix with the latest FTE binaries
This commit is contained in:
parent
99c878d4d0
commit
147bcc2f25
2 changed files with 6 additions and 1 deletions
|
@ -240,6 +240,11 @@ void Player_PreUpdate(void)
|
|||
if (flSuccess == FALSE) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (i==clientcommandframe){
|
||||
CSQC_Input_Frame();
|
||||
}
|
||||
|
||||
// Partial frames are the worst
|
||||
if (input_timelength == 0) {
|
||||
break;
|
||||
|
|
|
@ -68,7 +68,7 @@ void PMove_Categorize(void)
|
|||
self.maxs = VEC_HULL_MAX;
|
||||
self.view_ofs = VEC_PLAYER_VIEWPOS;
|
||||
}
|
||||
|
||||
|
||||
tracebox(self.origin, self.mins, self.maxs, self.origin - '0 0 0.25', TRUE, self);
|
||||
|
||||
if (!trace_startsolid) {
|
||||
|
|
Loading…
Reference in a new issue