mirror of
https://github.com/skawo/GodMode9-with-Cartridge-Fixer.git
synced 2025-06-19 01:15:33 -04:00
Only skip stuck hashes if the 20 retries are consecutive.
This commit is contained in:
parent
9a1b91555e
commit
79c26f1b25
9
.vscode/settings.json
vendored
Normal file
9
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"initializer_list": "c",
|
||||
"type_traits": "c",
|
||||
"vector": "c",
|
||||
"xstring": "c",
|
||||
"xutility": "c"
|
||||
}
|
||||
}
|
@ -1328,7 +1328,7 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, PaneData** pan
|
||||
ShaCalculator(file_path, true);
|
||||
GetDirContents(current_dir, current_path);
|
||||
|
||||
refresh_call_every = 10000;
|
||||
refresh_call_every = 10000;
|
||||
return 0;
|
||||
}
|
||||
else if (user_select == calccmac) { // -> calculate CMAC
|
||||
|
@ -193,6 +193,7 @@ u32 CheckFixNcchHash(u8* expected, FIL* file, u32 size_data, u32 offset_ncch, Nc
|
||||
{
|
||||
DrawString(MAIN_SCREEN, "HASH MISMATCH. Attempting refresh. ", pos_x, pos_y + 114, COLOR_STD_FONT, COLOR_STD_BG);
|
||||
hash_stuck = false;
|
||||
hash_stuck_times = 0;
|
||||
}
|
||||
|
||||
fvx_lseek(file, offset_back);
|
||||
|
Loading…
Reference in New Issue
Block a user