1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-05 03:24:26 +00:00

Handle KL_SCRYPT in config write.

This commit is contained in:
Con Kolivas 2012-07-16 13:19:42 +10:00
parent 5cd4bbd21c
commit 76c37891ea

View File

@ -2851,6 +2851,11 @@ void write_config(FILE *fcfg)
case KL_DIABLO:
fprintf(fcfg, "diablo");
break;
#ifdef USE_SCRYPT
case KL_SCRYPT:
fprintf(fcfg, "scrypt");
break;
#endif
}
}
#ifdef HAVE_ADL