Browse Source

fix review issues

pull/161/head
Lena 10 months ago
parent
commit
f780bcedbb
No known key found for this signature in database
GPG Key ID: 5A940B96C2DA3683
  1. 8
      ctru-rs/src/services/apt.rs

8
ctru-rs/src/services/apt.rs

@ -120,7 +120,7 @@ impl Apt {
} }
/// Immediately jumps to the home menu. /// Immediately jumps to the home menu.
#[doc(alias = "aptIsHomeAllowed")] #[doc(alias = "aptJumpToHomeMenu")]
pub fn jump_to_home_menu(&mut self) { pub fn jump_to_home_menu(&mut self) {
unsafe { ctru_sys::aptJumpToHomeMenu() } unsafe { ctru_sys::aptJumpToHomeMenu() }
} }
@ -159,19 +159,19 @@ impl<'a> Chainloader<'a> {
/// Configures the chainloader to launch a specific application. /// Configures the chainloader to launch a specific application.
#[doc(alias = "aptSetChainloader")] #[doc(alias = "aptSetChainloader")]
pub fn set_chainloader(&mut self, title: &super::am::Title<'_>) { pub fn set(&mut self, title: &super::am::Title<'_>) {
unsafe { ctru_sys::aptSetChainloader(title.id(), title.media_type() as u8) } unsafe { ctru_sys::aptSetChainloader(title.id(), title.media_type() as u8) }
} }
/// Configures the chainloader to launch the previous application. /// Configures the chainloader to launch the previous application.
#[doc(alias = "aptSetChainloaderToCaller")] #[doc(alias = "aptSetChainloaderToCaller")]
pub fn set_chainloader_to_caller(&mut self) { pub fn set_to_caller(&mut self) {
unsafe { ctru_sys::aptSetChainloaderToCaller() } unsafe { ctru_sys::aptSetChainloaderToCaller() }
} }
/// Configures the chainloader to relaunch the current application (i.e. soft-reset) /// Configures the chainloader to relaunch the current application (i.e. soft-reset)
#[doc(alias = "aptSetChainloaderToSelf")] #[doc(alias = "aptSetChainloaderToSelf")]
pub fn set_chainloader_to_self(&mut self) { pub fn set_to_self(&mut self) {
unsafe { ctru_sys::aptSetChainloaderToSelf() } unsafe { ctru_sys::aptSetChainloaderToSelf() }
} }
} }

Loading…
Cancel
Save