From 9d0e543821fc0aeb4cde552f110edbb71153c9f2 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 13 Mar 2022 21:01:15 -0400 Subject: Handle EVENT_SET_BANK_INDEX before EVENT_ON --- src/seq.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/seq.c b/src/seq.c index eca1144..de56508 100644 --- a/src/seq.c +++ b/src/seq.c @@ -65,6 +65,18 @@ static xas_seq_event *event_tail(xas_seq_event *head) { return head; } +static inline int event_lt(xas_seq_event *a, xas_seq_event *b) { + if (timercmp(&a->timestamp, &b->timestamp, <)) { + return 1; + } else if (!timercmp(&a->timestamp, &b->timestamp, !=)) { + if (a->type < b->type) { + return 1; + } + } + + return 0; +} + static xas_seq_event *event_list_partition(xas_seq_event *head, xas_seq_event *end, xas_seq_event **head_new, @@ -75,7 +87,7 @@ static xas_seq_event *event_list_partition(xas_seq_event *head, *tail = pivot; while (cur != pivot) { - if (timercmp(&cur->timestamp, &pivot->timestamp, <)) { + if (event_lt(cur, pivot)) { if (*head_new == NULL) { *head_new = cur; } -- cgit v1.2.3