show key error upon mounting mmc and fix small files in hex view

This commit is contained in:
suchmememanyskill
2021-05-23 23:57:58 +02:00
parent bb4361c991
commit a1ae52e8ac
3 changed files with 8 additions and 10 deletions

View File

@@ -108,18 +108,16 @@ void GptMenu(u8 MMCType){
}
else if (entries[res].icon == 127){
unmountMMCPart();
ErrCode_t err = mountMMCPart(entries[res].name);
ErrCode_t err = (TConf.keysDumped) ? mountMMCPart(entries[res].name) : newErrCode(TE_ERR_KEYDUMP_FAIL);
if (err.err){
DrawError(err);
}
else {
if (TConf.keysDumped){
if (TConf.curExplorerLoc > LOC_SD)
ResetCopyParams();
if (TConf.curExplorerLoc > LOC_SD)
ResetCopyParams();
TConf.curExplorerLoc = LOC_EMMC;
FileExplorer("bis:/");
}
TConf.curExplorerLoc = LOC_EMMC;
FileExplorer("bis:/");
}
}
else {