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 { @@ -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.
#[derive(Copy, Clone, Debug)]
pub struct AudioMix {
raw: [f32;12]
raw: [f32; 12],
}
#[derive(Copy, Clone, Debug)]
@ -317,9 +317,7 @@ impl AudioFormat { @@ -317,9 +317,7 @@ impl AudioFormat {
impl AudioMix {
/// Creates a new [AudioMix] with all volumes set to 0.
pub fn zeroed() -> Self {
Self {
raw: [0.;12],
}
Self { raw: [0.; 12] }
}
/// Returns a reference to the raw data.
@ -409,9 +407,7 @@ impl Default for AudioMix { @@ -409,9 +407,7 @@ impl Default for AudioMix {
impl From<[f32; 12]> for AudioMix {
fn from(value: [f32; 12]) -> Self {
Self {
raw: value,
}
Self { raw: value }
}
}

Loading…
Cancel
Save