@ -7,7 +7,7 @@ pub struct Sdmc {
}
impl Sdmc {
pub fn new() -> Result<Sdmc, i32> {
pub fn init() -> Result<Sdmc, i32> {
unsafe {
let r = sdmcInit();
if r < 0 {
@ -55,7 +55,7 @@ pub struct Apt {
impl Apt {
pub fn new() -> Result<Apt, i32> {
pub fn init() -> Result<Apt, i32> {
let r = apt::aptInit();
@ -78,7 +78,7 @@ pub struct Hid {
impl Hid {
pub fn new() -> Result<Hid, i32> {
pub fn init() -> Result<Hid, i32> {
let r = hid::hidInit();
@ -7,7 +7,7 @@ pub struct Srv {
impl Srv {
pub fn new() -> Result<Srv, i32> {
pub fn init() -> Result<Srv, i32> {
let r = srvInit();