From a6cd55dcfe6a2a11739f977ecfecffeef3aa372e Mon Sep 17 00:00:00 2001 From: Frank van de Pol Date: Wed, 15 Dec 1999 23:37:12 +0000 Subject: [PATCH] small sequencer fixes --- src/seq/seqmid.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/seq/seqmid.c b/src/seq/seqmid.c index 0e1de70d..ec7b4b8f 100644 --- a/src/seq/seqmid.c +++ b/src/seq/seqmid.c @@ -48,6 +48,7 @@ void snd_seq_ev_schedule_tick(snd_seq_event_t *ev, int q, int relative, ev->flags |= SND_SEQ_TIME_STAMP_TICK; ev->flags |= relative ? SND_SEQ_TIME_MODE_REL : SND_SEQ_TIME_MODE_ABS; ev->time.tick = tick; + ev->queue = q; } /* queued on real-time */ @@ -60,6 +61,7 @@ void snd_seq_ev_schedule_real(snd_seq_event_t *ev, int q, int relative, ev->flags |= SND_SEQ_TIME_STAMP_REAL; ev->flags |= relative ? SND_SEQ_TIME_MODE_REL : SND_SEQ_TIME_MODE_ABS; ev->time.real = *real; + ev->queue = q; } /* set event priority */ -- 2.47.1