mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-30 00:10:53 +00:00
cl_pred.c einen Header verpasst
This commit is contained in:
parent
d7900e6333
commit
d76da3b2ed
1 changed files with 7 additions and 1 deletions
|
@ -16,6 +16,12 @@
|
||||||
* this program; if not, write to the Free Software Foundation, Inc., 59
|
* this program; if not, write to the Free Software Foundation, Inc., 59
|
||||||
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
|
* =======================================================================
|
||||||
|
*
|
||||||
|
* This file implements interpolation between two frames. This is used
|
||||||
|
* to smooth down network play
|
||||||
|
*
|
||||||
|
* =======================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "header/client.h"
|
#include "header/client.h"
|
||||||
|
@ -167,7 +173,6 @@ int CL_PMpointcontents (vec3_t point) {
|
||||||
return contents;
|
return contents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Sets cl.predicted_origin and cl.predicted_angles
|
* Sets cl.predicted_origin and cl.predicted_angles
|
||||||
*/
|
*/
|
||||||
|
@ -248,3 +253,4 @@ void CL_PredictMovement (void) {
|
||||||
|
|
||||||
VectorCopy (pm.viewangles, cl.predicted_angles);
|
VectorCopy (pm.viewangles, cl.predicted_angles);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue