From 2ee758581c71d629ba1a1008b6fa788f7423bdbe Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 9 Sep 2019 11:11:16 -0500 Subject: fix a typo in is_slot_early() --- src/dc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/dc.c b/src/dc.c index 8b85070..fa02ac1 100644 --- a/src/dc.c +++ b/src/dc.c @@ -697,7 +697,7 @@ int is_slot_early(event *ev, int flasher_pmt_id) t_slot /= n_slot; t_nearby /= n_nearby; - return t_slot < t_nearby + 10.0; + return t_slot < t_nearby - 10.0; } /* Returns 1 if the event is a flasher and 0 if it isn't. The definition of -- cgit