Browse Source

Allow intensities up to 20 if scrypt is compiled in.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
17dfe74f96
  1. 5
      miner.h

5
miner.h

@ -610,8 +610,13 @@ extern void add_pool_details(bool live, char *url, char *user, char *pass); @@ -610,8 +610,13 @@ extern void add_pool_details(bool live, char *url, char *user, char *pass);
#define MIN_INTENSITY -10
#define _MIN_INTENSITY_STR "-10"
#ifdef USE_SCRYPT
#define MAX_INTENSITY 20
#define _MAX_INTENSITY_STR "20"
#else
#define MAX_INTENSITY 14
#define _MAX_INTENSITY_STR "14"
#endif
extern struct list_head scan_devices;
extern int nDevs;

Loading…
Cancel
Save