Browse Source

Only set lagging flag once there are no staged work items.

Con Kolivas 13 years ago
parent
commit
8ed381f78a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
cgminer.c

@@ -2417,7 +2417,7 @@ retry:
 		ret_work->queued = true;
 	} else {
 
-		if (ts <= opt_queue)
+		if (!ts)
 			lagging = true;
 		pool = ret_work->pool = select_pool(lagging);