mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
13 lines
450 B
C
13 lines
450 B
C
#include <3ds.h>
|
|
|
|
#include "action.h"
|
|
#include "../section.h"
|
|
#include "../task/uitask.h"
|
|
#include "../../core/core.h"
|
|
|
|
void action_browse_title_save_data(linked_list* items, list_item* selected) {
|
|
title_info* info = (title_info*) selected->data;
|
|
|
|
u32 path[3] = {info->mediaType, (u32) (info->titleId & 0xFFFFFFFF), (u32) ((info->titleId >> 32) & 0xFFFFFFFF)};
|
|
files_open(ARCHIVE_USER_SAVEDATA, fs_make_path_binary(path, sizeof(path)));
|
|
} |