yuzu qt: Start games from context menu

This connects the BootGame function to the context menu. In addition,
there is an option to boot without using the custom configuration.
This commit is contained in:
lat9nq
2021-06-07 20:22:39 -04:00
parent df91c9f5e6
commit 5ac018d1df
4 changed files with 23 additions and 3 deletions

View File

@ -28,6 +28,7 @@ class GameListWorker;
class GameListSearchField;
class GameListDir;
class GMainWindow;
enum class StartGameType;
namespace FileSys {
class ManualContentProvider;
@ -82,6 +83,7 @@ public:
static const QStringList supported_file_extensions;
signals:
void BootGame(const QString& game_path, std::size_t program_index, StartGameType type);
void GameChosen(const QString& game_path);
void ShouldCancelWorker();
void OpenFolderRequested(u64 program_id, GameListOpenTarget target,