From: Luke H. <lh...@us...> - 2002-11-26 04:58:32
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/linux In directory sc8-pr-cvs1:/tmp/cvs-serv21107 Modified Files: org_lwjgl_Sys.cpp Log Message: 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 =) Index: org_lwjgl_Sys.cpp CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/linux/org_lwjgl_Sys.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/linux/org_lwjgl_Sys.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- org_lwjgl_Sys.cpp 22 Nov 2002 11:35:03 -0000 1.2 +++ org_lwjgl_Sys.cpp 26 Nov 2002 04:58:29 -0000 1.3 @@ -89,9 +89,7 @@ #endif } long result = tv.tv_sec * 1000000l + tv.tv_usec; -#ifdef _DEBUG - printf("Current time (native): %ld\n", result); -#endif + return result; } |