From 7969dc7e0bed71575220d713de6f89c2598ad226 Mon Sep 17 00:00:00 2001 From: Fernando Sahmkow Date: Thu, 5 Sep 2019 19:22:55 -0400 Subject: [PATCH] Yuzu UI: Correct rescaling profile selector. --- src/yuzu/game_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index f12993456e..b3c33d131d 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -492,7 +492,7 @@ void GameList::AddGamePopup(QMenu& context_menu, u64 program_id, std::string pat connect(open_transferable_shader_cache, &QAction::triggered, [this, program_id]() { emit OpenTransferableShaderCacheRequested(program_id); }); connect(open_rescaling_profile_cache, &QAction::triggered, - [&]() { emit OpenResolutionProfileRequested(program_id); }); + [this, program_id]() { emit OpenResolutionProfileRequested(program_id); }); connect(dump_romfs, &QAction::triggered, [this, program_id, path]() { emit DumpRomFSRequested(program_id, path); }); connect(copy_tid, &QAction::triggered,