From 96391ffca6a1e616704e2e75dec4c98bb7b3e971 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 9 May 2018 12:07:53 -0400 Subject: [PATCH] boot: Use fsdevMountSdmc & fsdevUnmountAll --- stratosphere/boot/source/boot_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stratosphere/boot/source/boot_main.cpp b/stratosphere/boot/source/boot_main.cpp index d3cbae4c1..fca0b78e6 100644 --- a/stratosphere/boot/source/boot_main.cpp +++ b/stratosphere/boot/source/boot_main.cpp @@ -59,12 +59,12 @@ void __appInit(void) { if (R_FAILED(rc)) fatalSimple(0xCAFE << 4 | 2); - fsdevInit(); + fsdevMountSdmc(); } void __appExit(void) { /* Cleanup services. */ - fsdevExit(); + fsdevUnmountAll(); pmshellExit(); splExit(); fsExit();