Browse Source

Provide alternative error message.

tags/non-sequencer-v1.9.4
Jonathan Moore Liles 17 years ago
parent
commit
a8cdb739e1
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      main.C

+ 4
- 1
main.C View File

@@ -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" );



Loading…
Cancel
Save