minor adjustment to askmandemod for lf search

returns false if it finds data but not an EM410x format.
This commit is contained in:
marshmellow42 2014-12-31 14:55:58 -05:00
parent 9ec1416ad2
commit ac914e56db

View file

@ -234,8 +234,9 @@ int Cmdaskmandemod(const char *Cmd)
setGraphBuf(BitStream,BitLen);
PrintAndLog("EM410x pattern found: ");
printEM410x(lo);
return 1;
}
if (BitLen>16) return 1;
//if (BitLen>16) return 1;
return 0;
}