From 97fce222dca3a0277d75055200bf91eb9d14c91a Mon Sep 17 00:00:00 2001 From: Andrea Ciliberti Date: Mon, 17 Apr 2023 15:03:50 +0200 Subject: [PATCH] Rename MiiIndex to Index --- ctru-rs/src/applets/mii_selector.rs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ctru-rs/src/applets/mii_selector.rs b/ctru-rs/src/applets/mii_selector.rs index 9d3b3ca..a6acd61 100644 --- a/ctru-rs/src/applets/mii_selector.rs +++ b/ctru-rs/src/applets/mii_selector.rs @@ -9,7 +9,7 @@ use std::ffi::CString; /// Index of a Mii used to configure some parameters of the Mii Selector /// Can be either a single index, or _all_ Miis #[derive(Debug, Clone, Copy, Eq, PartialEq)] -pub enum MiiIndex { +pub enum Index { Index(u32), All, } @@ -94,40 +94,40 @@ impl MiiSelector { } /// Whitelist a guest Mii - pub fn whitelist_guest_mii(&mut self, mii_index: MiiIndex) { + pub fn whitelist_guest_mii(&mut self, mii_index: Index) { let index = match mii_index { - MiiIndex::Index(i) => i, - MiiIndex::All => ctru_sys::MIISELECTOR_GUESTMII_SLOTS, + Index::Index(i) => i, + Index::All => ctru_sys::MIISELECTOR_GUESTMII_SLOTS, }; unsafe { ctru_sys::miiSelectorWhitelistGuestMii(self.config.as_mut(), index) } } /// Blacklist a guest Mii - pub fn blacklist_guest_mii(&mut self, mii_index: MiiIndex) { + pub fn blacklist_guest_mii(&mut self, mii_index: Index) { let index = match mii_index { - MiiIndex::Index(i) => i, - MiiIndex::All => ctru_sys::MIISELECTOR_GUESTMII_SLOTS, + Index::Index(i) => i, + Index::All => ctru_sys::MIISELECTOR_GUESTMII_SLOTS, }; unsafe { ctru_sys::miiSelectorBlacklistGuestMii(self.config.as_mut(), index) } } /// Whitelist a user Mii - pub fn whitelist_user_mii(&mut self, mii_index: MiiIndex) { + pub fn whitelist_user_mii(&mut self, mii_index: Index) { let index = match mii_index { - MiiIndex::Index(i) => i, - MiiIndex::All => ctru_sys::MIISELECTOR_USERMII_SLOTS, + Index::Index(i) => i, + Index::All => ctru_sys::MIISELECTOR_USERMII_SLOTS, }; unsafe { ctru_sys::miiSelectorWhitelistUserMii(self.config.as_mut(), index) } } /// Blacklist a user Mii - pub fn blacklist_user_mii(&mut self, mii_index: MiiIndex) { + pub fn blacklist_user_mii(&mut self, mii_index: Index) { let index = match mii_index { - MiiIndex::Index(i) => i, - MiiIndex::All => ctru_sys::MIISELECTOR_USERMII_SLOTS, + Index::Index(i) => i, + Index::All => ctru_sys::MIISELECTOR_USERMII_SLOTS, }; unsafe { ctru_sys::miiSelectorBlacklistUserMii(self.config.as_mut(), index) } @@ -185,7 +185,7 @@ impl From for SelectionResult { } } -impl From for MiiIndex { +impl From for Index { fn from(v: u32) -> Self { Self::Index(v) }