Skip to content

Commit c4c0496

Browse files
committed
strip fs + seemingly unused inits
1 parent 277a241 commit c4c0496

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

sys-botbase/source/main.c

-13
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,6 @@ void __appInit(void)
8080
setsysExit();
8181
}
8282
}
83-
rc = fsInitialize();
84-
if (R_FAILED(rc))
85-
fatalThrow(rc);
86-
rc = fsdevMountSdmc();
87-
if (R_FAILED(rc))
88-
fatalThrow(rc);
89-
rc = timeInitialize();
90-
if (R_FAILED(rc))
91-
fatalThrow(rc);
9283
rc = pmdmntInitialize();
9384
if (R_FAILED(rc))
9485
fatalThrow(rc);
@@ -111,14 +102,10 @@ void __appInit(void)
111102

112103
void __appExit(void)
113104
{
114-
fsdevUnmountAll();
115-
fsExit();
116105
smExit();
117106
audoutExit();
118-
timeExit();
119107
socketExit();
120108
viExit();
121-
lblExit();
122109
}
123110

124111
u64 mainLoopSleepTime = 50;

0 commit comments

Comments
 (0)