From c0c4e60d297689289b0f31e2f8720deaf93c0ed5 Mon Sep 17 00:00:00 2001 From: Luke Holden Date: Tue, 26 Nov 2002 04:58:29 +0000 Subject: [PATCH] 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 =) --- src/native/linux/org_lwjgl_Sys.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/native/linux/org_lwjgl_Sys.cpp b/src/native/linux/org_lwjgl_Sys.cpp index 81d1d66e..141e94c7 100644 --- a/src/native/linux/org_lwjgl_Sys.cpp +++ b/src/native/linux/org_lwjgl_Sys.cpp @@ -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; }