rather hacky fix for the change of the SyncSource > JACK enum to SyncSource > Engine

This is needed in order to get ardour started if ardour.rc names "JACK" as the sync source
This commit is contained in:
Paul Davis
2013-09-20 14:30:50 -04:00
parent bab9184f7c
commit b188033bf7
2 changed files with 3 additions and 1 deletions

View File

@@ -489,7 +489,8 @@ namespace ARDOUR {
};
enum SyncSource {
Engine,
Engine = 0,
JACK = 0,
MTC,
MIDIClock,
LTC

View File

@@ -336,6 +336,7 @@ setup_enum_writer ()
REGISTER_ENUM (MTC);
REGISTER_ENUM (Engine);
REGISTER_ENUM (JACK);
REGISTER_ENUM (MIDIClock);
REGISTER_ENUM (LTC);
REGISTER (_SyncSource);