Browse Source

help: temp-target and temp-overheat had identical descriptions that do not describe what they actually do.

Closes https://github.com/veox/sgminer/issues/65
nfactor-troky
Noel Maersk 11 years ago
parent
commit
52e9df8d78
  1. 6
      sgminer.c

6
sgminer.c

@ -1293,16 +1293,16 @@ static struct opt_table opt_config_table[] = {
#ifdef HAVE_ADL #ifdef HAVE_ADL
OPT_WITH_ARG("--temp-cutoff", OPT_WITH_ARG("--temp-cutoff",
set_temp_cutoff, opt_show_intval, &opt_cutofftemp, set_temp_cutoff, opt_show_intval, &opt_cutofftemp,
"Temperature where a device will be automatically disabled, one value or comma separated list"), "Temperature which a device will be automatically disabled at, one value or comma separated list"),
OPT_WITH_ARG("--temp-hysteresis", OPT_WITH_ARG("--temp-hysteresis",
set_int_1_to_10, opt_show_intval, &opt_hysteresis, set_int_1_to_10, opt_show_intval, &opt_hysteresis,
"Set how much the temperature can fluctuate outside limits when automanaging speeds"), "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
OPT_WITH_ARG("--temp-overheat", OPT_WITH_ARG("--temp-overheat",
set_temp_overheat, opt_show_intval, &opt_overheattemp, set_temp_overheat, opt_show_intval, &opt_overheattemp,
"Overheat temperature when automatically managing fan and GPU speeds, one value or comma separated list"), "Temperature which a device will be throttled at while automanaging fan and/or GPU, one value or comma separated list"),
OPT_WITH_ARG("--temp-target", OPT_WITH_ARG("--temp-target",
set_temp_target, opt_show_intval, &opt_targettemp, set_temp_target, opt_show_intval, &opt_targettemp,
"Target temperature when automatically managing fan and GPU speeds, one value or comma separated list"), "Temperature which a device should stay at while automanaging fan and/or GPU, one value or comma separated list"),
#endif #endif
OPT_WITHOUT_ARG("--text-only|-T", OPT_WITHOUT_ARG("--text-only|-T",
opt_set_invbool, &use_curses, opt_set_invbool, &use_curses,

Loading…
Cancel
Save