Say that keeping real tickets is recommended

This commit is contained in:
Pk11 2022-01-14 20:45:55 -06:00
parent af3408a8aa
commit c9267de164

View File

@ -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);
}