1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-03-10 12:41:02 +00:00

Allow intensity up to 14 for multiple devices as well.

This commit is contained in:
Con Kolivas 2012-01-26 13:18:57 +11:00
parent d662c9c626
commit a992b5d89d

2
main.c
View File

@ -1466,7 +1466,7 @@ static char *set_intensity(char *arg)
else {
gpus[device].dynamic = false;
val = atoi(nextptr);
if (val < -10 || val > 10)
if (val < -10 || val > 14)
return "Invalid value passed to set intensity";
tt = &gpus[device].intensity;