From 89e3ba29a5dea6d69caa22754782be9d94943357 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 15 Oct 2025 19:06:55 +1000 Subject: [PATCH] Qt: Fix warning --- src/duckstation-qt/settingswindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duckstation-qt/settingswindow.cpp b/src/duckstation-qt/settingswindow.cpp index 8822027c7..77fd14ed5 100644 --- a/src/duckstation-qt/settingswindow.cpp +++ b/src/duckstation-qt/settingswindow.cpp @@ -51,8 +51,8 @@ SettingsWindow::SettingsWindow() : QWidget() } SettingsWindow::SettingsWindow(const GameList::Entry* entry, std::unique_ptr sif) - : QWidget(), m_sif(std::move(sif)), m_database_entry(entry->dbentry), m_serial(entry->serial), m_hash(entry->hash), - m_path(entry->path) + : QWidget(), m_sif(std::move(sif)), m_database_entry(entry->dbentry), m_path(entry->path), m_serial(entry->serial), + m_hash(entry->hash) { m_ui.setupUi(this); setGameTitle(entry->GetDisplayTitle(GameList::ShouldShowLocalizedTitles()));