summaryrefslogtreecommitdiff
path: root/gtk2_ardour/opts.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/opts.cc')
-rw-r--r--gtk2_ardour/opts.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/opts.cc b/gtk2_ardour/opts.cc
index 917d2a49d7..d3380ffb8f 100644
--- a/gtk2_ardour/opts.cc
+++ b/gtk2_ardour/opts.cc
@@ -79,6 +79,7 @@ list_debug_options ()
{
cerr << _("The following debug options are available. Their use is case-insensitive.\n\n");
cerr << "\tMidiSourceIO\n";
+ cerr << "\tMidiPlaylistIO\n";
}
static int
@@ -101,6 +102,9 @@ parse_debug_options (const char* str)
if (strcasecmp (p, "midisourceio") == 0) {
bits |= ARDOUR::DEBUG::MidiSourceIO;
}
+ if (strcasecmp (p, "midiplaylistio") == 0) {
+ bits |= ARDOUR::DEBUG::MidiPlaylistIO;
+ }
p = strtok_r (0, ",", &sp);
}