Removed the native time readout from queryTime().

I think elias_naur was trying to annoy me to death with time updates
every 0.001 seconds =)
This commit is contained in:
Luke Holden 2002-11-26 04:58:29 +00:00
parent f02005efd9
commit c0c4e60d29
1 changed files with 1 additions and 3 deletions

View File

@ -89,9 +89,7 @@ long queryTime(void) {
#endif
}
long result = tv.tv_sec * 1000000l + tv.tv_usec;
#ifdef _DEBUG
printf("Current time (native): %ld\n", result);
#endif
return result;
}