summaryrefslogtreecommitdiffstats
path: root/src/yuzu/game_list.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-09-13 15:39:06 +0200
committerGitHub <noreply@github.com>2023-09-13 15:39:06 +0200
commit9a0ea90018fffffc6bf5575f12178f61d2d01a3a (patch)
tree5731e966de52365e1620b3e423d8dd1e7479f472 /src/yuzu/game_list.cpp
parentMerge pull request #11447 from xcfrg/portable-compile-out (diff)
parentam: Implement UserChannel parameters (diff)
downloadyuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.tar
yuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.tar.gz
yuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.tar.bz2
yuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.tar.lz
yuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.tar.xz
yuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.tar.zst
yuzu-9a0ea90018fffffc6bf5575f12178f61d2d01a3a.zip
Diffstat (limited to 'src/yuzu/game_list.cpp')
-rw-r--r--src/yuzu/game_list.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 6842ced3e..f254c1e1c 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -589,10 +589,12 @@ void GameList::AddGamePopup(QMenu& context_menu, u64 program_id, const std::stri
emit OpenFolderRequested(program_id, GameListOpenTarget::SaveData, path);
});
connect(start_game, &QAction::triggered, [this, path]() {
- emit BootGame(QString::fromStdString(path), 0, 0, StartGameType::Normal);
+ emit BootGame(QString::fromStdString(path), 0, 0, StartGameType::Normal,
+ AmLaunchType::UserInitiated);
});
connect(start_game_global, &QAction::triggered, [this, path]() {
- emit BootGame(QString::fromStdString(path), 0, 0, StartGameType::Global);
+ emit BootGame(QString::fromStdString(path), 0, 0, StartGameType::Global,
+ AmLaunchType::UserInitiated);
});
connect(open_mod_location, &QAction::triggered, [this, program_id, path]() {
emit OpenFolderRequested(program_id, GameListOpenTarget::ModData, path);