Skip to content

Commit

Permalink
fix mistake in start delay default
Browse files Browse the repository at this point in the history
  • Loading branch information
greenbrettmichael committed Sep 3, 2019
1 parent 3ab3943 commit 9b2b689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ namespace po = boost::program_options;
int alarmQueue = 1000;
int badRecFail = 10;
int badRecCount = 0;
int startDelayMS = 1000;
int checkDelayMS = 10000;
int startDelayMS = 10000;
int checkDelayMS = 1000;
int rleft = 1035;
int rbottom = 492;
int rwidth = 75;
Expand Down

0 comments on commit 9b2b689

Please sign in to comment.