From c9267de1646e8c123e49fd93a90fc2afc7cf0b11 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Fri, 14 Jan 2022 20:45:55 -0600 Subject: [PATCH] Say that keeping real tickets is recommended --- arm9/src/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/src/install.c b/arm9/src/install.c index d91a561..61506c9 100644 --- a/arm9/src/install.c +++ b/arm9/src/install.c @@ -766,7 +766,7 @@ bool install(char* fpath, bool systemTitle) //actual tik path siprintf(ticketPath, "%s/%08lx.tik", ticketPath, h->tid_low); - if (access(ticketPath, F_OK) != 0 || choicePrint("Ticket already exists.\nKeep it?") == NO) + if (access(ticketPath, F_OK) != 0 || (choicePrint("Ticket already exists.\nKeep it? (recommended)") == NO && choicePrint("Are you sure?") == YES)) _createTicket(h, ticketPath); }