Browse Source

fix reversed naming of ALSA seq MIDI ports

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@3166 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.116.0
paul 16 years ago
parent
commit
59263ef27a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      drivers/alsa-midi/alsa_seqmidi.c

+ 2
- 2
drivers/alsa-midi/alsa_seqmidi.c View File

@@ -165,13 +165,13 @@ static port_type_t port_type[2] = {
{ {
SND_SEQ_PORT_CAP_SUBS_READ, SND_SEQ_PORT_CAP_SUBS_READ,
JackPortIsOutput, JackPortIsOutput,
"playback",
"capture",
do_jack_input do_jack_input
}, },
{ {
SND_SEQ_PORT_CAP_SUBS_WRITE, SND_SEQ_PORT_CAP_SUBS_WRITE,
JackPortIsInput, JackPortIsInput,
"capture",
"playback",
do_jack_output do_jack_output
} }
}; };


Loading…
Cancel
Save