From 5e756d3f6a695603a31b2be7461b783dbdccb047 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 24 Jul 2012 20:53:05 +1000 Subject: [PATCH] Don't make opt_scrypt mandatory blocking with opencl code. --- driver-opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver-opencl.c b/driver-opencl.c index eafdd5d2..b22017c1 100644 --- a/driver-opencl.c +++ b/driver-opencl.c @@ -1484,7 +1484,7 @@ static int64_t opencl_scanhash(struct thr_info *thr, struct work *work, unsigned int threads; int64_t hashes; - if (gpu->dynamic || opt_scrypt) + if (gpu->dynamic) blocking = CL_TRUE; else blocking = CL_FALSE;