mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fs.mitm: Fix flag detection.
This commit is contained in:
parent
de05685e3d
commit
e697f6bdd0
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ void Utils::InitializeSdThreadFunc(void *args) {
|
||||||
if (strlen(dir_entry.name) == 0x10 && IsHexadecimal(dir_entry.name)) {
|
if (strlen(dir_entry.name) == 0x10 && IsHexadecimal(dir_entry.name)) {
|
||||||
u64 title_id = strtoul(dir_entry.name, NULL, 16);
|
u64 title_id = strtoul(dir_entry.name, NULL, 16);
|
||||||
char title_path[FS_MAX_PATH] = {0};
|
char title_path[FS_MAX_PATH] = {0};
|
||||||
strcpy(title_path, "sdmc:/atmosphere/titles/");
|
strcpy(title_path, "/atmosphere/titles/");
|
||||||
strcat(title_path, dir_entry.name);
|
strcat(title_path, dir_entry.name);
|
||||||
strcat(title_path, "/fsmitm.flag");
|
strcat(title_path, "/fsmitm.flag");
|
||||||
if (R_SUCCEEDED(fsFsOpenFile(&g_sd_filesystem, title_path, FS_OPEN_READ, &f))) {
|
if (R_SUCCEEDED(fsFsOpenFile(&g_sd_filesystem, title_path, FS_OPEN_READ, &f))) {
|
||||||
|
|
Loading…
Reference in a new issue