Skip to content

Commit

Permalink
Fix: else if忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Sep 17, 2023
1 parent 32b2018 commit cb25f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/voicevox_core/src/inference_core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl InferenceCore {
cfg_if! {
if #[cfg(feature = "directml")] {
Ok(*supported_devices.dml())
} #[cfg(feature = "coreml")] {
} else if #[cfg(feature = "coreml")] {
Ok(*supported_devices.coreml())
} else{
Ok(*supported_devices.cuda())
Expand Down

0 comments on commit cb25f14

Please sign in to comment.