diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-13 09:39:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 09:39:06 -0400 |
commit | 9a0ea90018fffffc6bf5575f12178f61d2d01a3a (patch) | |
tree | 5731e966de52365e1620b3e423d8dd1e7479f472 /src/yuzu/game_list.h | |
parent | ce5320c49f6e3c1dc52b9046213366dd0df1612f (diff) | |
parent | 87c0ba129ce38dd3b001fbef8021590a127fb1a8 (diff) |
Merge pull request #11473 from liamwhite/fix-launch-param
am: Implement UserChannel parameters
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index 8aea646b2..1fcbbf0ba 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -28,6 +28,7 @@ class GameListWorker; class GameListSearchField; class GameListDir; class GMainWindow; +enum class AmLaunchType; enum class StartGameType; namespace FileSys { @@ -103,7 +104,7 @@ public: signals: void BootGame(const QString& game_path, u64 program_id, std::size_t program_index, - StartGameType type); + StartGameType type, AmLaunchType launch_type); void GameChosen(const QString& game_path, const u64 title_id = 0); void ShouldCancelWorker(); void OpenFolderRequested(u64 program_id, GameListOpenTarget target, |