mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
10 lines
353 B
C
10 lines
353 B
C
#include <3ds.h>
|
|
|
|
#include "action.h"
|
|
#include "../section.h"
|
|
|
|
void action_browse_title_save_data(title_info* info, bool* populated) {
|
|
u32 path[3] = {info->mediaType, (u32) (info->titleId & 0xFFFFFFFF), (u32) ((info->titleId >> 32) & 0xFFFFFFFF)};
|
|
FS_Archive archive = {ARCHIVE_USER_SAVEDATA, {PATH_BINARY, 12, path}};
|
|
files_open(archive);
|
|
} |