]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake2/common/cmdlib.c
Remove some dead/debug code
[xonotic/netradiant.git] / tools / quake2 / common / cmdlib.c
index db6e2418fb55fdafd44654c8ce098e712c0a3a00..90c2453efceaa714eb3429c29f6e33c9e5de1be7 100644 (file)
@@ -308,21 +308,6 @@ double I_FloatTime( void ){
        time( &t );
 
        return t;
-#if 0
-// more precise, less portable
-       struct timeval tp;
-       struct timezone tzp;
-       static int secbase;
-
-       gettimeofday( &tp, &tzp );
-
-       if ( !secbase ) {
-               secbase = tp.tv_sec;
-               return tp.tv_usec / 1000000.0;
-       }
-
-       return ( tp.tv_sec - secbase ) + tp.tv_usec / 1000000.0;
-#endif
 }
 
 void Q_getwd( char *out ){