diff options
author | psychocrypt <psychocryptHPC@gmail.com> | 2018-05-08 20:27:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 20:27:16 +0200 |
commit | fe0b40e0e6571592b1af5cc20ce7a99dc99cbdac (patch) | |
tree | d3d058546bafa9da5a97a60a2661f98908fab15c /xmrstak/backend | |
parent | 1a7e695f8b71f644b9840e778039229ce393f75c (diff) | |
parent | e77a3fc70b29e1be2dfb370103c04c76195bc92a (diff) | |
download | xmr-stak-fe0b40e0e6571592b1af5cc20ce7a99dc99cbdac.zip xmr-stak-fe0b40e0e6571592b1af5cc20ce7a99dc99cbdac.tar.gz |
Merge pull request #1555 from jagerman/stellite-condition-fix
Fix condition on stellite check
Diffstat (limited to 'xmrstak/backend')
-rw-r--r-- | xmrstak/backend/amd/amd_gpu/gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmrstak/backend/amd/amd_gpu/gpu.cpp b/xmrstak/backend/amd/amd_gpu/gpu.cpp index 9f11f9f..c664d53 100644 --- a/xmrstak/backend/amd/amd_gpu/gpu.cpp +++ b/xmrstak/backend/amd/amd_gpu/gpu.cpp @@ -1004,7 +1004,7 @@ size_t XMRSetJob(GpuContext* ctx, uint8_t* input, size_t input_len, uint64_t tar return(ERR_OCL_API); } - if(miner_algo == cryptonight_monero || miner_algo == cryptonight_aeon || miner_algo == cryptonight_ipbc || cryptonight_stellite) + if(miner_algo == cryptonight_monero || miner_algo == cryptonight_aeon || miner_algo == cryptonight_ipbc || miner_algo == cryptonight_stellite) { // Input if ((ret = clSetKernelArg(ctx->Kernels[kernel_storage][1], 3, sizeof(cl_mem), &ctx->InputBuffer)) != CL_SUCCESS) |