engine: client: fix misplaced arguments in memcpy

This commit is contained in:
Alibek Omarov 2022-02-24 02:47:54 +03:00
parent 3f7773f83b
commit a2d8a47376
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ void CL_UpdateLatchedVars( cl_entity_t *ent )
if( ent->curstate.sequence != ent->prevstate.sequence )
{
memcpy( ent->prevstate.blending, ent->latched.prevseqblending, sizeof( ent->prevstate.blending ));
memcpy( ent->latched.prevseqblending, ent->prevstate.blending, sizeof( ent->prevstate.blending ));
ent->latched.prevsequence = ent->prevstate.sequence;
ent->latched.sequencetime = ent->curstate.animtime;
}