git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12768
d7cf8633-e32d-0410-b094-
e92efae38249
qboolean free;
// sv.time when the object was freed (to prevent early reuse which could
// mess up client interpolation or obscure severe QuakeC bugs)
- float freetime;
+ double freetime;
// mark for the leak detector
int mark;
// place in the code where it was allocated (for the leak detector)
typedef struct prvm_edict_private_s
{
qboolean free;
- float freetime; // realtime of last change to "free" (i.e. also set on allocation)
+ double freetime; // realtime of last change to "free" (i.e. also set on allocation)
int mark; // used during leaktest (0 = unref, >0 = referenced); special values during server physics:
#define PRVM_EDICT_MARK_WAIT_FOR_SETORIGIN -1
#define PRVM_EDICT_MARK_SETORIGIN_CAUGHT -2