From 27d9b700c13d0a1a7e3d039967621329dfaacbfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanko=20Krsti=C4=87?= Date: Fri, 4 Nov 2016 16:17:02 +0100 Subject: [PATCH] logic check error fix --- NiceHashMiner/Miners/nheqminer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NiceHashMiner/Miners/nheqminer.cs b/NiceHashMiner/Miners/nheqminer.cs index dbc2599..5b6dee5 100644 --- a/NiceHashMiner/Miners/nheqminer.cs +++ b/NiceHashMiner/Miners/nheqminer.cs @@ -74,7 +74,7 @@ protected override string GetDevicesCommandString() { string deviceStringCommand = " "; if (CPUs.Count > 0) { - if (CPUs[0].MostProfitableAlgorithm.LessThreads > 0 || string.IsNullOrEmpty(CPUs[0].MostProfitableAlgorithm.ExtraLaunchParameters)) { + if (CPUs[0].MostProfitableAlgorithm.LessThreads > 0 || !string.IsNullOrEmpty(CPUs[0].MostProfitableAlgorithm.ExtraLaunchParameters)) { // TODO parse deviceStringCommand += " " + ExtraLaunchParametersParser.ParseForCDevs(CPUs, AlgorithmType.Equihash, DeviceType.CPU); }