From 507cb8c75f799512f95a184dee3512d57e2319ca Mon Sep 17 00:00:00 2001 From: James Craddock-Jones Date: Mon, 17 Aug 2020 15:49:25 +0000 Subject: [PATCH] fix: updated short and long boost limits --- src/contexts/RyzenAdjContext.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contexts/RyzenAdjContext.tsx b/src/contexts/RyzenAdjContext.tsx index 711581e..b97adc0 100644 --- a/src/contexts/RyzenAdjContext.tsx +++ b/src/contexts/RyzenAdjContext.tsx @@ -119,7 +119,7 @@ const RyzenAdjOptionDefinitions: Array = [ ), label: getTranslation("ryzenAdj.stapmTime.label", "Long Boost Duration"), tab: "cpu", - min: 1, + min: 60, max: 3600, step: 1, default: 900, @@ -148,7 +148,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.slowTime.label", "Short Boost Duration "), tab: "cpu", min: 1, - max: 3600, + max: 60, step: 1, default: 900, ryzenadj_arg: "--slow-time=",