summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorNikolaus Gullotta <nik@harrisonconsoles.com>2019-02-26 09:45:58 -0600
committerNikolaus Gullotta <nik@harrisonconsoles.com>2019-02-26 09:45:58 -0600
commit711965b1a99babfe9db09444d733ce26276aaf14 (patch)
treefe09c551654cd6502cc15ff3bda3f831a74c7255 /libs/ardour/route.cc
parentd61efbee3edcf08c345d95ef8bb21c4f8c541358 (diff)
Amend d61efbee3 - remove check for Mixbus
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 7f18d40ddf..4e664106d0 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2411,15 +2411,13 @@ Route::state (bool save_template)
XMLNode *node = new XMLNode("Route");
ProcessorList::iterator i;
-#ifdef MIXBUS
if(save_template) {
XMLNode* child = node->add_child("ProgramVersion");
child->set_property("created-with", _session.created_with);
std::string modified_with = string_compose ("%1 %2", PROGRAM_NAME, revision);
child->set_property("modified-with", modified_with);
- }
-#endif
+ }
node->set_property (X_("id"), id ());
node->set_property (X_("name"), name());