summaryrefslogtreecommitdiff
path: root/src/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/timer.c')
-rw-r--r--src/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer.c b/src/timer.c
index 2205634..7f9394a 100644
--- a/src/timer.c
+++ b/src/timer.c
@@ -159,7 +159,7 @@ void TimerScan()
/* recherche des timers echu dans la liste */
IVY_LIST_EACH_SAFE( timers , timer, next )
{
- if ( timer->when <= stamp )
+ if ( timer->when <= stamp && (!timer->mark2Remove) )
{
timer_echu++;
delta = stamp - timer->when;