a few notation fixes

This commit is contained in:
marshmellow42 2017-04-13 17:16:34 -04:00
commit f516ff0895
3 changed files with 5 additions and 5 deletions

View file

@ -1069,7 +1069,7 @@ int CmdRawDemod(const char *Cmd)
void setClockGrid(int clk, int offset) {
g_DemodStartIdx = offset;
g_DemodClock = clk;
PrintAndLog("demodoffset %d, clk %d",offset,clk);
if (g_debugMode) PrintAndLog("demodoffset %d, clk %d",offset,clk);
if (offset > clk) offset %= clk;
if (offset < 0) offset += clk;