git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4716 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5cbb8be132
commit
66aa41adef
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ pbool PDECL ED_ParseEval (pubprogfuncs_t *progfuncs, eval_t *eval, int type, con
|
||||||
{
|
{
|
||||||
struct timespec c;
|
struct timespec c;
|
||||||
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &c);
|
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &c);
|
||||||
return (c.tv_sec*1000000000ull) + tc.tv_nsec;
|
return (c.tv_sec*1000000000ull) + c.tv_nsec;
|
||||||
}
|
}
|
||||||
static unsigned long long Sys_GetClockRate(void)
|
static unsigned long long Sys_GetClockRate(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue