You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "platform/switch/romfs.hpp" |
|
|
|
#include <cstdlib> |
|
|
|
extern "C" { |
|
#include <switch/runtime/devices/romfs_dev.h> |
|
} |
|
|
|
void switch_romfs_init() |
|
{ |
|
Result res = romfsInit(); |
|
if (R_SUCCEEDED(res)) |
|
atexit([]() { romfsExit(); }); |
|
} |