Yuzu UI: Correct rescaling profile selector.

This commit is contained in:
Fernando Sahmkow
2019-09-05 19:22:55 -04:00
committed by FernandoS27
parent 269654144b
commit 7969dc7e0b

View File

@@ -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,