1
0
Fork 0

Dummmy -> Dummy

This commit is contained in:
Brian Anderson 2022-06-15 23:28:07 -06:00
parent 4d7cfa381f
commit 23947ec0b5
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ pub fn nih_export_standalone_with_args<P: Plugin, Args: IntoIterator<Item = Stri
false
}
},
config::BackendType::Dummmy => {
config::BackendType::Dummy => {
run_wrapper::<P, _>(backend::Dummy::new(config.clone()), config)
}
}

View file

@ -79,5 +79,5 @@ pub enum BackendType {
/// Use JACK for audio and MIDI.
Jack,
/// Does not playback or receive any audio or MIDI.
Dummmy,
Dummy,
}