fusee: implement parsing for emummc.ini

This commit is contained in:
Michael Scire 2021-08-28 03:05:03 -07:00 committed by SciresM
parent 6c5f2804ab
commit 8560713a60
6 changed files with 397 additions and 7 deletions

View file

@ -104,7 +104,7 @@ namespace ams::fs {
bool MountSdCard() {
AMS_ASSERT(!g_is_sd_mounted);
g_is_sd_mounted = f_mount(std::addressof(g_sd_fs), "", 1) == FR_OK;
g_is_sd_mounted = f_mount(std::addressof(g_sd_fs), "sdmc", 1) == FR_OK;
return g_is_sd_mounted;
}