Update of /cvsroot/plib/plib/src/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3444
Modified Files:
ul.h
Log Message:
Setting the initial \"delta\" in \"ulClock\" to a very small value. There should be no practical effect.
Index: ul.h
===================================================================
RCS file: /cvsroot/plib/plib/src/util/ul.h,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- ul.h 14 Jul 2005 17:08:28 -0000 1.70
+++ ul.h 19 Jul 2005 13:21:58 -0000 1.71
@@ -226,7 +226,7 @@
start = getRawTime () ;
now = 0.0 ;
max_delta = 0.2 ;
- delta = 1.0 / 30.0 ; /* Faked so stoopid programs won't div0 */
+ delta = 0.0000001 ; /* Faked so stoopid programs won't div0 */
last_time = 0.0 ;
}
|