Browse Source

engine: client: added Host_Error for CL_EDICT_NUM (hotfix for issue #434)

pull/2/head
SNMetamorph 3 years ago committed by Alibek Omarov #SupportRMS
parent
commit
f7f069a38b
  1. 6
      engine/client/client.h

6
engine/client/client.h

@ -844,6 +844,12 @@ movevars_t *pfnGetMoveVars( void ); @@ -844,6 +844,12 @@ movevars_t *pfnGetMoveVars( void );
_inline cl_entity_t *CL_EDICT_NUM( int n )
{
if( !clgame.entities )
{
Host_Error( "CL_EDICT_NUM: clgame.entities is NULL\n");
return NULL;
}
if(( n >= 0 ) && ( n < clgame.maxEntities ))
return clgame.entities + n;

Loading…
Cancel
Save