2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-16 00:28:20 +03:00

Make Sys_FloatTime steady in linux, fix #441

This commit is contained in:
In-line 2017-04-27 16:34:35 +04:00
parent 4a179e2d8b
commit 827c66f624

View File

@ -625,9 +625,17 @@ double Sys_FloatTime(void)
if ( !bInitialized )
{
bInitialized = true;
#ifdef REHLDS_FIXES
clock_gettime(CLOCK_MONOTONIC_RAW, &start_time);
#else
clock_gettime(CLOCK_MONOTONIC, &start_time);
#endif
}
#ifdef REHLDS_FIXES
clock_gettime(CLOCK_MONOTONIC_RAW, &now);
#else
clock_gettime(CLOCK_MONOTONIC, &now);
#endif
return (now.tv_sec - start_time.tv_sec) + now.tv_nsec * 0.000000001;
}