From 4739ab58cce58637bf20241ddbad72b10f1d61a9 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 9 Mar 2024 16:32:09 +0100 Subject: [PATCH] Qt: fix weird return value warning on VS --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index f5f1724ad4..e764b7637e 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -3351,7 +3351,7 @@ void main_window::ConfigureGuiFromSettings() m_mw->restoreState(m_gui_settings->GetValue(gui::mw_mwState).toByteArray()); ui->freezeRecentAct->setChecked(m_gui_settings->GetValue(gui::rg_freeze).toBool()); - m_rg_entries = m_gui_settings->Var2List(m_gui_settings->GetValue(gui::rg_entries)); + m_rg_entries = gui_settings::Var2List(m_gui_settings->GetValue(gui::rg_entries)); // clear recent games menu of actions for (QAction* act : m_recent_game_acts)