mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-25 07:57:04 -05:00
TitleOptions: Implement reset_save_data
This commit is contained in:
parent
ea8c653649
commit
75959d217f
|
|
@ -148,6 +148,7 @@
|
|||
"TitleOptionConfirmations": [
|
||||
"Are you sure you want to add #%s# to you blacklist? Once you do this, it will no longer appear on any title list or selection.",
|
||||
"Are you sure you would like to delete all of the current save backups for #%s#? This cannot be undone!",
|
||||
"Are you sure you would like to reset the save data afor #%s#? *This will delete the current save data for the title as if it were never run!*",
|
||||
"Are you sure you want to delete #%s#'s save data for #%s#? This will permanently delete it from the system."
|
||||
],
|
||||
"PopMessagesGeneral": [
|
||||
|
|
|
|||
|
|
@ -142,6 +142,23 @@ void TitleOptionState::update(void)
|
|||
|
||||
case RESET_SAVE_DATA:
|
||||
{
|
||||
// String
|
||||
std::string confirmString = stringutil::get_formatted_string(
|
||||
strings::get_by_name(strings::names::TITLE_OPTION_CONFIRMATIONS, 2),
|
||||
m_titleInfo->get_title());
|
||||
|
||||
// Data
|
||||
std::shared_ptr<TargetStruct> data = std::make_shared<TargetStruct>();
|
||||
data->m_targetUser = m_targetUser;
|
||||
data->m_targetTitle = m_titleInfo;
|
||||
|
||||
std::shared_ptr<ConfirmState<sys::Task, TaskState, TargetStruct>> confirm =
|
||||
std::make_shared<ConfirmState<sys::Task, TaskState, TargetStruct>>(confirmString,
|
||||
true,
|
||||
reset_save_data,
|
||||
data);
|
||||
|
||||
JKSV::push_state(confirm);
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
@ -214,6 +231,7 @@ static void delete_all_backups_for_title(sys::Task *task, std::shared_ptr<Target
|
|||
|
||||
static void reset_save_data(sys::Task *task, std::shared_ptr<TargetStruct> dataStruct)
|
||||
{
|
||||
// To do: Make this not as hard to read.
|
||||
// Attempt to mount save.
|
||||
if (!fslib::open_save_data_with_save_info(
|
||||
fs::DEFAULT_SAVE_MOUNT,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user