13
0

T: Trax has no JACK transport master

This commit is contained in:
Robin Gareus 2024-05-24 16:11:59 +02:00
parent 036fc1d6b6
commit 11a25c8be0
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 7 additions and 0 deletions

View File

@ -347,6 +347,11 @@ TransportMaster::factory (XMLNode const & node)
if (!node.get_property (X_("type"), type)) {
return std::shared_ptr<TransportMaster>();
}
#ifdef LIVETRAX
if (type == Engine) {
return std::shared_ptr<TransportMaster>();
}
#endif
if (!node.get_property (X_("name"), name)) {
return std::shared_ptr<TransportMaster>();

View File

@ -81,7 +81,9 @@ TransportMasterManager::set_default_configuration ()
others
*/
#ifndef LIVETRAX
add (Engine, X_("JACK Transport"), false);
#endif
add (MTC, X_("MTC"), false);
add (LTC, X_("LTC"), false);
add (MIDIClock, X_("MIDI Clock"), false);