mirror of
https://github.com/Decscots/Lockpick_RCM.git
synced 2024-11-01 08:15:04 +01:00
Fix bad f_mkdir check skipping file save
This commit is contained in:
parent
d4fa066854
commit
ee1a3e08ae
2
Makefile
2
Makefile
@ -11,7 +11,7 @@ include $(DEVKITARM)/base_rules
|
|||||||
IPL_LOAD_ADDR := 0x40003000
|
IPL_LOAD_ADDR := 0x40003000
|
||||||
LPVERSION_MAJOR := 1
|
LPVERSION_MAJOR := 1
|
||||||
LPVERSION_MINOR := 6
|
LPVERSION_MINOR := 6
|
||||||
LPVERSION_BUGFX := 2
|
LPVERSION_BUGFX := 3
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
|
@ -1039,7 +1039,7 @@ key_output: ;
|
|||||||
gfx_printf("%kLockpick totally done in %d us\n\n", colors[(color_idx++) % 6], end_time - begin_time);
|
gfx_printf("%kLockpick totally done in %d us\n\n", colors[(color_idx++) % 6], end_time - begin_time);
|
||||||
gfx_printf("%kFound through master_key_%02x.\n\n", colors[(color_idx++) % 6], MAX_KEY - 1);
|
gfx_printf("%kFound through master_key_%02x.\n\n", colors[(color_idx++) % 6], MAX_KEY - 1);
|
||||||
|
|
||||||
if (f_mkdir("sd:/switch")) {
|
if (f_mkdir("sd:/switch") != FR_EXIST) {
|
||||||
EPRINTF("Unable to create /switch folder on SD.\nNo keyfiles written.");
|
EPRINTF("Unable to create /switch folder on SD.\nNo keyfiles written.");
|
||||||
goto free_buffers;
|
goto free_buffers;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user