we /do/ want full precision from Sys_DoubleTime :P

This commit is contained in:
Bill Currie 2003-08-11 22:39:07 +00:00
parent 9ed8150b85
commit 7fe0962bac

View file

@ -314,9 +314,7 @@ Sys_DoubleTime (void)
gettimeofday (&tp, &tzp);
tp.tv_usec /= 1000; // lose some precision, we don't need it
now = tp.tv_sec + tp.tv_usec / 1000.0;
now = tp.tv_sec + tp.tv_usec / 1e6;
if (first) {
first = false;