Searched defs:thinktime (Results 1 - 2 of 2) sorted by relevance

/external/quake/quake/src/QW/server/
H A Dsv_phys.c128 float thinktime; local
132 thinktime = ent->v.nextthink;
133 if (thinktime <= 0)
135 if (thinktime > sv.time + host_frametime)
138 if (thinktime < sv.time)
139 thinktime = sv.time; // don't let things stay in the past.
143 pr_global_struct->time = thinktime;
579 float thinktime; local
587 thinktime = ent->v.nextthink;
588 if (thinktime < en
[all...]
/external/quake/quake/src/WinQuake/
H A Dsv_phys.cpp128 float thinktime; local
130 thinktime = ent->u.v.nextthink;
131 if (thinktime <= 0 || thinktime > sv.time + host_frametime)
134 if (thinktime < sv.time)
135 thinktime = sv.time; // don't let things stay in the past.
139 pr_global_struct->time = thinktime;
706 float thinktime; local
712 thinktime = ent->u.v.nextthink;
713 if (thinktime < en
[all...]

Completed in 40 milliseconds