mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
#include <stdio.h>
|
|
|
|
#include <3ds.h>
|
|
|
|
#include "action.h"
|
|
#include "../resources.h"
|
|
#include "../task/uitask.h"
|
|
#include "../../core/core.h"
|
|
|
|
static void action_import_seed_update(ui_view* view, void* data, float* progress, char* text) {
|
|
title_info* info = (title_info*) data;
|
|
|
|
Result res = http_download_seed(info->titleId);
|
|
|
|
ui_pop();
|
|
info_destroy(view);
|
|
|
|
if(R_SUCCEEDED(res)) {
|
|
prompt_display_notify("Success", "Seed imported.", COLOR_TEXT, info, task_draw_title_info, NULL);
|
|
} else {
|
|
error_display_res(info, task_draw_title_info, res, "Failed to import seed.");
|
|
}
|
|
}
|
|
|
|
static void action_import_seed_onresponse(ui_view* view, void* data, u32 response) {
|
|
if(response == PROMPT_YES) {
|
|
info_display("Importing Seed", "", false, data, action_import_seed_update, task_draw_title_info);
|
|
}
|
|
}
|
|
|
|
void action_import_seed(linked_list* items, list_item* selected) {
|
|
prompt_display_yes_no("Confirmation", "Import the seed of the selected title?", COLOR_TEXT, selected->data, task_draw_title_info, action_import_seed_onresponse);
|
|
} |