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,