Print a message about IO being unimplemented
This commit is contained in:
parent
8cb763246b
commit
9e40ec11fe
|
@ -74,6 +74,11 @@ pub fn nih_export_standalone_with_args<P: Plugin, Args: IntoIterator<Item = Stri
|
||||||
timesig_denom: 4,
|
timesig_denom: 4,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
eprintln!(
|
||||||
|
"Audio and MIDI IO has not yet been implemented in the standalone targets. So if you're \
|
||||||
|
not hearing anything, then that's correct!"
|
||||||
|
);
|
||||||
|
|
||||||
// TODO: We should try JACK first, then CPAL, and then fall back to the dummy backend. With a
|
// TODO: We should try JACK first, then CPAL, and then fall back to the dummy backend. With a
|
||||||
// command line option to override this behavior.
|
// command line option to override this behavior.
|
||||||
let backend = backend::Dummy::new(config.clone());
|
let backend = backend::Dummy::new(config.clone());
|
||||||
|
|
Loading…
Reference in a new issue