From 1f6f3064902297831ff4a00745efb4c8ad7a4cbb Mon Sep 17 00:00:00 2001 From: jlobue10 Date: Fri, 24 Feb 2023 19:27:38 -0800 Subject: [PATCH] Bug Fix Bug fix for consecutive create config presses when using SteamOS FW bootnum option --- GUI/src/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/GUI/src/mainwindow.cpp b/GUI/src/mainwindow.cpp index 09075af..b3c92d7 100644 --- a/GUI/src/mainwindow.cpp +++ b/GUI/src/mainwindow.cpp @@ -265,6 +265,7 @@ void MainWindow::on_Install_Config_clicked() } string MainWindow::Get_FW_BootNum() { + FW_BootNum_SteamOS.clear(); FILE *process; char buff[1024]; process = popen("efibootmgr | grep steam | grep -Eo '[0-9]{1,4}' | head -1", "r");