Browse Source

engine: client: fix warnings in cl_pmove

pull/2/head
Alibek Omarov 4 years ago
parent
commit
ad4062969b
  1. 13
      engine/client/cl_pmove.c

13
engine/client/cl_pmove.c

@ -1082,13 +1082,14 @@ Runs prediction code for user cmd
void CL_RunUsercmd( local_state_t *from, local_state_t *to, usercmd_t *u, qboolean runfuncs, double *time, unsigned int random_seed ) void CL_RunUsercmd( local_state_t *from, local_state_t *to, usercmd_t *u, qboolean runfuncs, double *time, unsigned int random_seed )
{ {
usercmd_t cmd; usercmd_t cmd;
if( u->msec > 50 )
{
local_state_t temp; local_state_t temp;
usercmd_t split; usercmd_t split;
memset( &temp, 0, sizeof( temp )); memset( &temp, 0, sizeof( temp ));
if( u->msec > 50 )
{
split = *u; split = *u;
split.msec /= 2; split.msec /= 2;
CL_RunUsercmd( from, &temp, &split, runfuncs, time, random_seed ); CL_RunUsercmd( from, &temp, &split, runfuncs, time, random_seed );
@ -1155,12 +1156,12 @@ Sets cl.predicted.origin and cl.predicted.angles
*/ */
void CL_PredictMovement( qboolean repredicting ) void CL_PredictMovement( qboolean repredicting )
{ {
runcmd_t *to_cmd, *from_cmd; runcmd_t *to_cmd = NULL, *from_cmd;
local_state_t *from = NULL, *to = NULL; local_state_t *from = NULL, *to = NULL;
int current_command; uint current_command;
int current_command_mod; uint current_command_mod;
frame_t *frame = NULL; frame_t *frame = NULL;
int i, stoppoint; uint i, stoppoint;
qboolean runfuncs; qboolean runfuncs;
double f = 1.0; double f = 1.0;
cl_entity_t *ent; cl_entity_t *ent;

Loading…
Cancel
Save