From f4622fac41233a6c4dec549da3d00303574b5513 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 8 Jun 2024 20:41:13 +0200 Subject: [PATCH] Fix yet another warning --- rpcs3/Emu/system_progress.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/system_progress.hpp b/rpcs3/Emu/system_progress.hpp index f50ba890ca..9dd242ca95 100644 --- a/rpcs3/Emu/system_progress.hpp +++ b/rpcs3/Emu/system_progress.hpp @@ -36,7 +36,7 @@ class scoped_progress_dialog final public: scoped_progress_dialog(const char* text) noexcept { - std::tie(m_prev, m_prev_id, m_id) = g_progr.atomic_op([this, text = ensure(text)](progress_dialog_string_t& progr) + std::tie(m_prev, m_prev_id, m_id) = g_progr.atomic_op([text = ensure(text)](progress_dialog_string_t& progr) { const char* old = progr.m_text; progr.m_user_count++;