You aint taking this down
This commit is contained in:
parent
0fedba0e2e
commit
c520596b67
6 changed files with 54 additions and 9 deletions
|
@ -82,7 +82,7 @@ int save_fb_to_bmp()
|
|||
|
||||
f_mkdir("sd:/switch");
|
||||
|
||||
char path[0x80] = "sd:/switch/lockpick_rcm.bmp";
|
||||
char path[0x80] = "sd:/switch/picklock_rcm.bmp";
|
||||
|
||||
// Save screenshot and log.
|
||||
int res = sd_save_to_file(bitmap, file_size, path);
|
||||
|
|
|
@ -100,7 +100,7 @@ void *tui_do_menu(menu_t *menu)
|
|||
{
|
||||
gfx_con_setcol(0xFFCCCCCC, 1, 0xFF1B1B1B);
|
||||
gfx_con_setpos(menu->x, menu->y);
|
||||
gfx_printf("[%kLo%kck%kpi%kck%k_R%kCM%k v%d.%d.%d%k]\n\n",
|
||||
gfx_printf("[%kPi%kck%klo%kck%k_R%kCM%k v%d.%d.%d%k]\n\n",
|
||||
colors[0], colors[1], colors[2], colors[3], colors[4], colors[5], 0xFFFF00FF, LP_VER_MJ, LP_VER_MN, LP_VER_BF, 0xFFCCCCCC);
|
||||
|
||||
// Skip caption or seperator lines selection.
|
||||
|
|
|
@ -115,7 +115,7 @@ static const u8 secure_data_tweaks[1][0x10] __attribute__((aligned(4))) = {
|
|||
//!TODO: Update on keygen changes.
|
||||
#define TSEC_ROOT_KEY_VERSION 2
|
||||
|
||||
// Lockpick_RCM keyslots
|
||||
// Picklock_RCM keyslots
|
||||
#define KS_BIS_00_CRYPT 0
|
||||
#define KS_BIS_00_TWEAK 1
|
||||
#define KS_BIS_01_CRYPT 2
|
||||
|
|
|
@ -740,7 +740,7 @@ static void _derive_keys() {
|
|||
}
|
||||
|
||||
end_time = get_tmr_us();
|
||||
gfx_printf("%kLockpick totally done in %d us\n", colors[(color_idx++) % 6], end_time - start_whole_operation_time);
|
||||
gfx_printf("%Picklock totally done in %d us\n", colors[(color_idx++) % 6], end_time - start_whole_operation_time);
|
||||
|
||||
if (h_cfg.t210b01) {
|
||||
// On Mariko, save only relevant key set
|
||||
|
@ -839,7 +839,7 @@ void dump_keys() {
|
|||
if (btn == BTN_VOL_UP) {
|
||||
int res = save_fb_to_bmp();
|
||||
if (!res) {
|
||||
gfx_printf("%kScreenshot sd:/switch/lockpick_rcm.bmp saved.", colors[(color_idx++) % 6]);
|
||||
gfx_printf("%kScreenshot sd:/switch/picklock_rcm.bmp saved.", colors[(color_idx++) % 6]);
|
||||
} else {
|
||||
EPRINTF("Screenshot failed.");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue