From 47417e762b3f217d578aebb42da1c4a19f06c75f Mon Sep 17 00:00:00 2001 From: Subv Date: Fri, 10 Apr 2020 18:40:56 -0500 Subject: [PATCH] Warnings/Qt: Removed unused variable from lambda capture list. --- src/citra_qt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index f47e359a0..1f2a71286 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -1232,7 +1232,7 @@ void GMainWindow::OnGameListDumpRomFS(QString game_path, u64 program_id) { using FutureWatcher = QFutureWatcher>; auto* future_watcher = new FutureWatcher(this); connect(future_watcher, &FutureWatcher::finished, - [this, program_id, dialog, base_path, update_path, future_watcher] { + [this, dialog, base_path, update_path, future_watcher] { dialog->hide(); const auto& [base, update] = future_watcher->result(); if (base != Loader::ResultStatus::Success) {