summary refs log tree commit diff
path: root/pkgs/tools/misc/timidity/timidity-iA-Oj.patch
blob: 9bb96413428322d898f99469f3e76814d276be7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Without this timidity -iA -Oj prints "Couldn't start JACK device (`j')"
and does not play MIDI.

--- a/timidity/jack_a.c
+++ b/timidity/jack_a.c
@@ -513,6 +513,8 @@ static int actl_jack(int request, void *arg)
 		ringbuf_clear(&ctx->rbuf);
 		return 0;
 
+	case PM_REQ_PLAY_START:
+		return 0;
 	}
 	return -1;
 }