diff options
author | Claudio Ciccani <klan@directfb.org> | 2008-02-08 12:03:53 +0100 |
---|---|---|
committer | Claudio Ciccani <klan@directfb.org> | 2008-02-08 12:03:53 +0100 |
commit | 5edede94bb506c358f1ee1450504c584c8f665ee (patch) | |
tree | 5137248b5391cce635d9a4d9f322ce2fee371272 | |
parent | 70908a793b7755c973fe024844185ff9e14924ea (diff) |
[glut-directfb] When converting microseconds to milliseconds, round to the next integer.
-rw-r--r-- | src/glut/directfb/callback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glut/directfb/callback.c b/src/glut/directfb/callback.c index 4f23441167..7c9768aac0 100644 --- a/src/glut/directfb/callback.c +++ b/src/glut/directfb/callback.c @@ -278,7 +278,7 @@ __glutGetTimeout( int *ret_msec ) gettimeofday( &now, NULL ); *ret_msec = (time->tv_sec - now.tv_sec) * 1000 + - (time->tv_usec - now.tv_usec + 500) / 1000; + (time->tv_usec - now.tv_usec + 999) / 1000; return GL_TRUE; } |