From cff055b71e94f980bc9ed024d09f178ec77f8bb0 Mon Sep 17 00:00:00 2001 From: Steveice10 Date: Wed, 9 Jan 2019 17:55:42 -0800 Subject: [PATCH] Fix inability to cancel ext save data deletion. --- source/fbi/action/deleteextsavedata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fbi/action/deleteextsavedata.c b/source/fbi/action/deleteextsavedata.c index 8b0d89a..20079e6 100644 --- a/source/fbi/action/deleteextsavedata.c +++ b/source/fbi/action/deleteextsavedata.c @@ -57,5 +57,5 @@ void action_delete_ext_save_data(linked_list* items, list_item* selected) { data->items = items; data->selected = selected; - prompt_display_notify("Confirmation", "Delete the selected ext save data?", COLOR_TEXT, data, action_delete_ext_save_data_draw_top, action_delete_ext_save_data_onresponse); + prompt_display_yes_no("Confirmation", "Delete the selected ext save data?", COLOR_TEXT, data, action_delete_ext_save_data_draw_top, action_delete_ext_save_data_onresponse); } \ No newline at end of file