hf search: fix 'no tag found' message display

This commit is contained in:
Philippe Teuwen 2020-09-06 17:41:55 +02:00
commit 97a7349510

View file

@ -189,13 +189,13 @@ int CmdHFSearch(const char *Cmd) {
*/ */
PROMPT_CLEARLINE; PROMPT_CLEARLINE;
PROMPT_EMPTYLINE;
if (res != PM3_SUCCESS) { if (res != PM3_SUCCESS) {
PrintAndLogEx(INPLACE, _RED_("No known/supported 13.56 MHz tags found")); PrintAndLogEx(WARNING, _RED_("No known/supported 13.56 MHz tags found"));
res = PM3_ESOFT; res = PM3_ESOFT;
} }
PROMPT_EMPTYLINE;
return res; return res;
} }