fix: StandAloneMode samyrun, proxbrute, - id values are unsigned

This commit is contained in:
iceman1001 2018-02-08 09:55:23 +01:00
parent 7bf6e0d089
commit ff07af84bf
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;