mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-30 20:23:46 +08:00
fix: StandAloneMode samyrun, proxbrute, - id values are unsigned
This commit is contained in:
parent
7bf6e0d089
commit
ff07af84bf
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ void RunMod() {
|
|||
StandAloneMode();
|
||||
FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
|
||||
|
||||
int high[OPTS], low[OPTS];
|
||||
uint32_t high[OPTS], low[OPTS];
|
||||
int selected = 0;
|
||||
int playing = 0;
|
||||
int cardRead = 0;
|
||||
|
|
|
@ -15,7 +15,7 @@ void RunMod() {
|
|||
StandAloneMode();
|
||||
FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
|
||||
|
||||
int high[OPTS], low[OPTS];
|
||||
uint32_t high[OPTS], low[OPTS];
|
||||
int selected = 0;
|
||||
int playing = 0;
|
||||
int cardRead = 0;
|
||||
|
|
Loading…
Reference in a new issue