Browse Source

Expanded InvalidChannel error and fixed types

pull/83/head
Andrea Ciliberti 2 years ago
parent
commit
e5c0052366
  1. 4
      ctru-rs/src/services/ndsp.rs

4
ctru-rs/src/services/ndsp.rs

@ -132,8 +132,8 @@ impl Channel {
/// Set the channel's volume mix. /// Set the channel's volume mix.
/// Docs about the buffer usage: https://libctru.devkitpro.org/channel_8h.html#a30eb26f1972cc3ec28370263796c0444 /// Docs about the buffer usage: https://libctru.devkitpro.org/channel_8h.html#a30eb26f1972cc3ec28370263796c0444
pub fn set_mix(&self, mix: &mut [f32; 12]) { pub fn set_mix(&self, mix: &[f32; 12]) {
unsafe { ctru_sys::ndspChnSetMix(self.id, mix.as_mut_ptr()) } unsafe { ctru_sys::ndspChnSetMix(self.id, mix.as_ptr().cast_mut()) }
} }
/// Set the channel's rate of sampling. /// Set the channel's rate of sampling.

Loading…
Cancel
Save