mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 00:28:07 +08:00
Restore original inline help behavior as we've now separate fcts for -h/-m
This commit is contained in:
parent
dec8e8bd9f
commit
46782176fc
1 changed files with 2 additions and 7 deletions
|
@ -22,13 +22,8 @@ void CmdsHelp(const command_t Commands[])
|
|||
int i = 0;
|
||||
while (Commands[i].Name)
|
||||
{
|
||||
if(Commands[i].Offline)
|
||||
{
|
||||
PrintAndLog("%-16s \t%s", Commands[i].Name, Commands[i].Help);
|
||||
}else
|
||||
{
|
||||
PrintAndLog("%-16s @\t%s", Commands[i].Name, Commands[i].Help);
|
||||
}
|
||||
if (!offline || Commands[i].Offline)
|
||||
PrintAndLog("%-16s %s", Commands[i].Name, Commands[i].Help);
|
||||
++i;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue