1
0
Fork 0

Print a message about IO being unimplemented

This commit is contained in:
Robbert van der Helm 2022-04-22 21:07:47 +02:00
parent 8cb763246b
commit 9e40ec11fe

View file

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