Skip to content

Commit

Permalink
Merge pull request #40 from d3m3vilurr/blowfish
Browse files Browse the repository at this point in the history
Use dev blowfish key
  • Loading branch information
handsomematt authored Sep 5, 2017
2 parents be6bd52 + 814d1fe commit 3dece90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <A> to return to the main menu.");
WaitButton(BUTTON_A);
}
}

0 comments on commit 3dece90

Please sign in to comment.