diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-22 01:30:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-22 01:30:08 -0400 |
| commit | b38d67d940ddd4c03d833dc443126609e0981987 (patch) | |
| tree | faf5f641c5d21df58b18fd22f1ece2af6f964083 /src/yuzu/game_list.cpp | |
| parent | cea627b0fc109ee27b3d0cabd8f803c8c2c2ac8b (diff) | |
| parent | cc71832b19ed9d3579160ddb8fe6e4f9a8269553 (diff) | |
Merge pull request #1136 from tech4me/master
qt/main: Port part of citra(#3411), open savedata works
Diffstat (limited to 'src/yuzu/game_list.cpp')
| -rw-r--r-- | src/yuzu/game_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index a974fb933..d5726b8b3 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -327,7 +327,7 @@ void GameList::PopupContextMenu(const QPoint& menu_location) { QAction* open_save_location = context_menu.addAction(tr("Open Save Data Location")); open_save_location->setEnabled(program_id != 0); connect(open_save_location, &QAction::triggered, - [&]() { emit OpenSaveFolderRequested(program_id); }); + [&]() { emit OpenFolderRequested(program_id, GameListOpenTarget::SaveData); }); context_menu.exec(tree_view->viewport()->mapToGlobal(menu_location)); } |
