summaryrefslogtreecommitdiff
path: root/libs/midi++2/port.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/midi++2/port.cc')
-rw-r--r--libs/midi++2/port.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/midi++2/port.cc b/libs/midi++2/port.cc
index 378548ca03..b5a16eef01 100644
--- a/libs/midi++2/port.cc
+++ b/libs/midi++2/port.cc
@@ -51,10 +51,11 @@ Port::Port (string const & name, Flags flags, jack_client_t* jack_client)
, _jack_client (jack_client)
, _jack_port (0)
, _last_read_index (0)
- , xthread (true)
, output_fifo (512)
, input_fifo (1024)
+ , xthread (true)
, _flags (flags)
+ , _centrally_parsed (true)
{
assert (jack_client);
init (name, flags);
@@ -66,9 +67,10 @@ Port::Port (const XMLNode& node, jack_client_t* jack_client)
, _jack_client (jack_client)
, _jack_port (0)
, _last_read_index (0)
- , xthread (true)
, output_fifo (512)
, input_fifo (1024)
+ , xthread (true)
+ , _centrally_parsed (true)
{
assert (jack_client);