From 95b9a833c189dc7bbfe350d7b339024c17bb21c7 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 25 Feb 2024 21:10:58 +0100 Subject: [PATCH] Tweaks --- app/Extra.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Extra.cs b/app/Extra.cs index 882bd106..b7a27818 100644 --- a/app/Extra.cs +++ b/app/Extra.cs @@ -433,11 +433,11 @@ namespace GHelper private void ButtonCores_Click(object? sender, EventArgs e) { - Program.acpi.SetCores(AsusACPI.ECoreMin + comboCoresE.SelectedIndex, AsusACPI.PCoreMin + comboCoresP.SelectedIndex); DialogResult dialogResult = MessageBox.Show(Properties.Strings.AlertAPUMemoryRestart, Properties.Strings.AlertAPUMemoryRestartTitle, MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes) { + Program.acpi.SetCores(AsusACPI.ECoreMin + comboCoresE.SelectedIndex, AsusACPI.PCoreMin + comboCoresP.SelectedIndex); Process.Start("shutdown", "/r /t 1"); } }