chg: 'lf search' - remove some block prints for AutoCorrelate

chg:  textual
This commit is contained in:
iceman1001
2018-04-26 14:39:11 +02:00
parent 8730b020b3
commit 7a17e7e753
2 changed files with 36 additions and 55 deletions

View File

@@ -979,9 +979,9 @@ void detect_classic_magic(void) {
isGeneration = resp.arg[0] & 0xff;
switch( isGeneration ){
case 1: PrintAndLogEx(NORMAL, "Answers to magic commands (GEN 1a): YES"); break;
case 2: PrintAndLogEx(NORMAL, "Answers to magic commands (GEN 1b): YES"); break;
//case 4: PrintAndLogEx(NORMAL, "Answers to magic commands (GEN 2): YES"); break;
default: PrintAndLogEx(NORMAL, "Answers to magic commands: NO"); break;
case 1: PrintAndLogEx(SUCCESS, "Answers to magic commands (GEN 1a): YES"); break;
case 2: PrintAndLogEx(SUCCESS, "Answers to magic commands (GEN 1b): YES"); break;
//case 4: PrintAndLogEx(SUCCESS, "Answers to magic commands (GEN 2): YES"); break;
default: PrintAndLogEx(INFO, "Answers to magic commands: NO"); break;
}
}