1
0
Fork 0

Merge pull request #11 from brson/dummmy

Dummmy -> Dummy
This commit is contained in:
Robbert van der Helm 2022-06-16 13:10:29 +02:00 committed by GitHub
commit 0e107b72ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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,
}