From 814d1feac5874d550d7783e1d67422f73a461437 Mon Sep 17 00:00:00 2001 From: Sunguk Lee Date: Wed, 6 Sep 2017 03:07:23 +0900 Subject: [PATCH] Use dev blowfish key --- source/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 6520943..db96c3e 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -260,14 +260,14 @@ void ntrboot_inject() { DrawStringF(TOP_SCREEN, 10, 80, COLOR_GREEN, STD_COLOR_BG, "Injecting..."); - selected_flashcart->injectNtrBoot((uint8_t *)blowfish_retail_bin, firm, firm_size); + selected_flashcart->injectNtrBoot((uint8_t *)blowfish_key, firm, firm_size); DrawStringF(TOP_SCREEN, 10, 90, COLOR_GREEN, STD_COLOR_BG, "Injection Complete!"); } else - DrawStringF(TOP_SCREEN, 10, 80, COLOR_RED, STD_COLOR_BG, "/ntrboot/boot9strap_ntr.firm not found"); + DrawStringF(TOP_SCREEN, 10, 80, COLOR_RED, STD_COLOR_BG, "/ntrboot/boot9strap_ntr%s.firm not found", (button & BUTTON_Y ? "_dev" : "")); ELM_Unmount(); DrawStringF(TOP_SCREEN, 10, 100, STD_COLOR_FONT, STD_COLOR_BG, "Press to return to the main menu."); WaitButton(BUTTON_A); -} \ No newline at end of file +}