Skip to content

Commit 6d55be1

Browse files
committed
fix: add fs & fsDevMountSdmc back
1 parent e31acf7 commit 6d55be1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

sys-botbaseplus/source/main.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ extern "C"
8585
setsysExit();
8686
}
8787
}
88+
rc = fsInitialize();
89+
if (R_FAILED(rc))
90+
fatalThrow(rc);
91+
rc = fsdevMountSdmc();
92+
if (R_FAILED(rc))
93+
fatalThrow(rc);
8894
rc = pmdmntInitialize();
8995
if (R_FAILED(rc))
9096
{
@@ -114,6 +120,8 @@ extern "C"
114120

115121
void __appExit(void)
116122
{
123+
fsdevUnmountAll();
124+
fsExit();
117125
smExit();
118126
audoutExit();
119127
socketExit();

0 commit comments

Comments
 (0)