Browse Source

ref: gl: remove GetPredictedOrigin call

pull/2/head
Alibek Omarov 6 months ago
parent
commit
8084687e50
  1. 6
      ref/gl/gl_beams.c
  2. 2
      ref/gl/gl_studio.c

6
ref/gl/gl_beams.c

@ -868,11 +868,7 @@ static qboolean R_BeamComputePoint( int beamEnt, vec3_t pt )
if( attach > 0 ) if( attach > 0 )
VectorCopy( ent->attachment[attach - 1], pt ); VectorCopy( ent->attachment[attach - 1], pt );
else if( ent->index == ( gp_cl->playernum + 1 )) else if( ent->index == ( gp_cl->playernum + 1 ))
{ VectorCopy( gp_cl->simorg, pt );
vec3_t simorg;
gEngfuncs.GetPredictedOrigin( simorg );
VectorCopy( simorg, pt );
}
else VectorCopy( ent->origin, pt ); else VectorCopy( ent->origin, pt );
return true; return true;

2
ref/gl/gl_studio.c

@ -3607,7 +3607,7 @@ void R_RunViewmodelEvents( void )
R_StudioSetupTimings(); R_StudioSetupTimings();
gEngfuncs.GetPredictedOrigin( simorg ); VectorCopy( gp_cl->simorg, simorg );
for( i = 0; i < 4; i++ ) for( i = 0; i < 4; i++ )
VectorCopy( simorg, RI.currententity->attachment[i] ); VectorCopy( simorg, RI.currententity->attachment[i] );
RI.currentmodel = RI.currententity->model; RI.currentmodel = RI.currententity->model;

Loading…
Cancel
Save