From b532d4bdc5c5c71227a762c270f9d07e4399f5ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Israelson?= <57065102+israpps@users.noreply.github.com> Date: Sun, 11 Feb 2024 11:42:16 -0300 Subject: [PATCH] Update filer.c --- src/filer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filer.c b/src/filer.c index 92297bb8..89669ab2 100644 --- a/src/filer.c +++ b/src/filer.c @@ -202,7 +202,7 @@ void pad_psu_header(psu_header *psu) /// if it is, prompts the user to confirm the operation before proceeding. /// returns 0 if user wants to proceed. returns nonzero if user does not want to proceed or the file is not a boot file int dongleguard(char *filepath) { - if (!strcmp(filepath, "mc0:boot.bin") { + if (!strcmp(filepath, "mc0:boot.bin")) { if (ynDialog("you're about to delete/rename/move the security dongle boot file\ndont do this if you don't know what it is\n\nContinue?") > 0) { return 2; } else {return 0;}