summaryrefslogtreecommitdiff
path: root/libs/ardour/source_factory.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-04-28 10:37:17 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-04-28 10:37:17 -0400
commitf5276a104c2d544cf537db9e9b8de9022de7ad56 (patch)
treef3beefb305a8364fd9603f32ef7129e6f4fe9768 /libs/ardour/source_factory.cc
parent16a8762dd494adb68756b8d549f349ed7bdccd9b (diff)
add new SMFSource constructor to be used for existing-external files. Fixes #5919. Needs merging with CC
Diffstat (limited to 'libs/ardour/source_factory.cc')
-rw-r--r--libs/ardour/source_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/source_factory.cc b/libs/ardour/source_factory.cc
index 0729f21592..391b205a94 100644
--- a/libs/ardour/source_factory.cc
+++ b/libs/ardour/source_factory.cc
@@ -272,7 +272,7 @@ SourceFactory::createExternal (DataType type, Session& s, const string& path,
} else if (type == DataType::MIDI) {
- boost::shared_ptr<SMFSource> src (new SMFSource (s, path, SMFSource::Flag(0)));
+ boost::shared_ptr<SMFSource> src (new SMFSource (s, path));
src->load_model (true, true);
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
// boost_debug_shared_ptr_mark_interesting (src, "Source");