Skip to content

Commit

Permalink
Auto=0とした
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerty2501 committed Aug 23, 2022
1 parent d1e2c4b commit 7e50250
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/voicevox_core_c_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ pub use voicevox_core::result_code::VoicevoxResultCode;
#[derive(Debug, PartialEq, Eq)]
#[allow(non_camel_case_types)]
pub enum VoicevoxAccelerationMode {
VOICEVOX_ACCELERATION_MODE_AUTO = 1,
VOICEVOX_ACCELERATION_MODE_CPU = 2,
VOICEVOX_ACCELERATION_MODE_GPU = 3,
VOICEVOX_ACCELERATION_MODE_AUTO = 0,
VOICEVOX_ACCELERATION_MODE_CPU = 1,
VOICEVOX_ACCELERATION_MODE_GPU = 2,
}

#[repr(C)]
Expand Down

0 comments on commit 7e50250

Please sign in to comment.