Browse Source

fmt

pull/104/head
Andrea Ciliberti 2 years ago
parent
commit
c849f947fe
  1. 10
      ctru-rs/src/services/ndsp/mod.rs

10
ctru-rs/src/services/ndsp/mod.rs

@ -35,7 +35,7 @@ pub enum AudioFormat {
/// Each member is made up of 2 values, the first is for the "left" channel, while the second is for the "right" channel. /// Each member is made up of 2 values, the first is for the "left" channel, while the second is for the "right" channel.
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
pub struct AudioMix { pub struct AudioMix {
raw: [f32;12] raw: [f32; 12],
} }
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
@ -317,9 +317,7 @@ impl AudioFormat {
impl AudioMix { impl AudioMix {
/// Creates a new [AudioMix] with all volumes set to 0. /// Creates a new [AudioMix] with all volumes set to 0.
pub fn zeroed() -> Self { pub fn zeroed() -> Self {
Self { Self { raw: [0.; 12] }
raw: [0.;12],
}
} }
/// Returns a reference to the raw data. /// Returns a reference to the raw data.
@ -409,9 +407,7 @@ impl Default for AudioMix {
impl From<[f32; 12]> for AudioMix { impl From<[f32; 12]> for AudioMix {
fn from(value: [f32; 12]) -> Self { fn from(value: [f32; 12]) -> Self {
Self { Self { raw: value }
raw: value,
}
} }
} }

Loading…
Cancel
Save