Skip to content

Commit

Permalink
strip fs + seemingly unused inits
Browse files Browse the repository at this point in the history
  • Loading branch information
berichan committed Apr 8, 2022
1 parent 277a241 commit c4c0496
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions sys-botbase/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,6 @@ void __appInit(void)
setsysExit();
}
}
rc = fsInitialize();
if (R_FAILED(rc))
fatalThrow(rc);
rc = fsdevMountSdmc();
if (R_FAILED(rc))
fatalThrow(rc);
rc = timeInitialize();
if (R_FAILED(rc))
fatalThrow(rc);
rc = pmdmntInitialize();
if (R_FAILED(rc))
fatalThrow(rc);
Expand All @@ -111,14 +102,10 @@ void __appInit(void)

void __appExit(void)
{
fsdevUnmountAll();
fsExit();
smExit();
audoutExit();
timeExit();
socketExit();
viExit();
lblExit();
}

u64 mainLoopSleepTime = 50;
Expand Down

0 comments on commit c4c0496

Please sign in to comment.