From 5cd1a207c9201ae76587583fce6a26c8e537bf09 Mon Sep 17 00:00:00 2001 From: Aurora Date: Sat, 3 Sep 2016 23:07:51 +0200 Subject: [PATCH] Forgot an instance where the PIN path is used --- source/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/config.c b/source/config.c index 60be2c0..262add0 100644 --- a/source/config.c +++ b/source/config.c @@ -231,7 +231,7 @@ void configMenu(bool oldPinStatus) configData.config |= (singleOptions[i].enabled ? 1 : 0) << (i + 16); if(CONFIG(7)) newPin(oldPinStatus); - else if(oldPinStatus) fileDelete("/luma/pin.bin"); + else if(oldPinStatus) fileDelete(PIN_PATH); //Wait for the pressed buttons to change while(HID_PAD & PIN_BUTTONS);