OSDN Git Service

small sequencer fixes
authorFrank van de Pol <fvdpol@home.nl>
Wed, 15 Dec 1999 23:37:12 +0000 (23:37 +0000)
committerFrank van de Pol <fvdpol@home.nl>
Wed, 15 Dec 1999 23:37:12 +0000 (23:37 +0000)
src/seq/seqmid.c

index 0e1de70..ec7b4b8 100644 (file)
@@ -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 */