From 0e5dae320fa2e76f32d309aac8db908766ce6495 Mon Sep 17 00:00:00 2001 From: Quentin DECAUNES Date: Thu, 6 Jun 2019 18:34:38 +0200 Subject: [PATCH] Fixing wrong parameters for gfxclk. --- js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index ec8c4d7..ae87724 100644 --- a/js/app.js +++ b/js/app.js @@ -58,8 +58,8 @@ function applyRyzenSettings() { value = value; break; - case "--max-gfxclk-frequency=": - case "--min-gfxclk-frequency=": + case "--max-gfxclk=": + case "--min-gfxclk=": case "--max-socclk-frequency=": case "--min-socclk-frequency=": value = parseInt(value / 10) * 10;