From efebc4fe34650ac419067e6043d5d90867fe6da9 Mon Sep 17 00:00:00 2001 From: flightlessmango Date: Tue, 14 Nov 2023 07:08:21 +0100 Subject: [PATCH] preset: 4: disable throttling graph Until we've fined tuned this a bit more, let's not expose it by default --- src/overlay_params.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overlay_params.cpp b/src/overlay_params.cpp index 751132f1..a6be4f89 100644 --- a/src/overlay_params.cpp +++ b/src/overlay_params.cpp @@ -1087,7 +1087,7 @@ void presets(int preset, struct overlay_params *params, bool inherit) { case 4: add_to_options(params, "full", "1"); add_to_options(params, "throttling_status", "0"); - add_to_options(params, "throttling_status_graph", "1"); + add_to_options(params, "throttling_status_graph", "0"); add_to_options(params, "io_read", "0"); add_to_options(params, "io_write", "0"); add_to_options(params, "arch", "0");