From a8cdb739e19bb77104498fbd0407e935c9fb388e Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Tue, 18 Mar 2008 21:21:19 -0500 Subject: [PATCH] Provide alternative error message. --- main.C | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.C b/main.C index b8cfa6b..93d3933 100644 --- a/main.C +++ b/main.C @@ -165,7 +165,10 @@ main ( int argc, char **argv ) ASSERTION( "Could not initialize MIDI system! (is Jack running and with MIDI ports enabled?)" ); if ( ! transport.valid ) - ASSERTION( "The version of JACK you are using does not appear to be capable of passing BBT positional information." ); + if ( transport.master ) + ASSERTION( "The version of JACK you are using does not appear to be capable of passing BBT positional information." ); + else + ASSERTION( "Either the version of JACK you are using does pass BBT information, or the current timebase master does not provide it." ); MESSAGE( "Initializing GUI" );