fix: updated short and long boost limits

This commit is contained in:
James Craddock-Jones 2020-08-17 15:49:25 +00:00
parent 9ab8b5b665
commit 507cb8c75f

View File

@ -119,7 +119,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
), ),
label: getTranslation("ryzenAdj.stapmTime.label", "Long Boost Duration"), label: getTranslation("ryzenAdj.stapmTime.label", "Long Boost Duration"),
tab: "cpu", tab: "cpu",
min: 1, min: 60,
max: 3600, max: 3600,
step: 1, step: 1,
default: 900, default: 900,
@ -148,7 +148,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
label: getTranslation("ryzenAdj.slowTime.label", "Short Boost Duration "), label: getTranslation("ryzenAdj.slowTime.label", "Short Boost Duration "),
tab: "cpu", tab: "cpu",
min: 1, min: 1,
max: 3600, max: 60,
step: 1, step: 1,
default: 900, default: 900,
ryzenadj_arg: "--slow-time=", ryzenadj_arg: "--slow-time=",