projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50253ea
)
fix timer bug (801485)
author
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 8 Sep 2003 15:23:55 +0000
(15:23 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 8 Sep 2003 15:23:55 +0000
(15:23 +0000)
src/glut/glx/glut_event.c
patch
|
blob
|
history
diff --git
a/src/glut/glx/glut_event.c
b/src/glut/glx/glut_event.c
index 0b65cf3039ab53204f490803c8142b79a1fca834..e453fe038937659b5562bdf340528b70623755b2 100644
(file)
--- a/
src/glut/glx/glut_event.c
+++ b/
src/glut/glx/glut_event.c
@@
-172,8
+172,8
@@
handleTimeouts(void)
GETTIMEOFDAY(&now);
while (IS_AT_OR_AFTER(__glutTimerList->timeout, now)) {
timer = __glutTimerList;
- timer->func(timer->value);
__glutTimerList = timer->next;
+ timer->func(timer->value);
timer->next = freeTimerList;
freeTimerList = timer;
if (!__glutTimerList)