mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
14 lines
542 B
C
14 lines
542 B
C
#include <3ds.h>
|
|
|
|
#include "action.h"
|
|
#include "../section.h"
|
|
#include "../task/task.h"
|
|
#include "../../list.h"
|
|
#include "../../../core/util.h"
|
|
|
|
void action_browse_user_ext_save_data(linked_list* items, list_item* selected) {
|
|
ext_save_data_info* info = (ext_save_data_info*) selected->data;
|
|
|
|
u32 path[3] = {info->mediaType, (u32) (info->extSaveDataId & 0xFFFFFFFF), (u32) ((info->extSaveDataId >> 32) & 0xFFFFFFFF)};
|
|
files_open(info->shared ? ARCHIVE_SHARED_EXTDATA : ARCHIVE_EXTDATA, util_make_binary_path(path, sizeof(path)));
|
|
} |