Browse Source

Remove a debug message

Olivier Marty 9 years ago
parent
commit
cfcad0da3d
1 changed files with 1 additions and 3 deletions
  1. 1 3
      time.c

+ 1 - 3
time.c

@@ -76,10 +76,8 @@ void timeInitialize(int rel)
 
 struct timespec timeGetRelative()
 {
-  if(pause) {
-    printf("paused !\n");
+  if(pause)
     return tPause;
-  }
 
   struct timespec r;
   if(clock_gettime(CLOCK_REALTIME, &r) < 0)