mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Fix VFS regression
Implements cfg_mode
This commit is contained in:
parent
da91a841b7
commit
8f1dc7a2d4
8 changed files with 100 additions and 48 deletions
|
@ -950,7 +950,7 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
|
|||
connect(boot_default, &QAction::triggered, [this, gameinfo]
|
||||
{
|
||||
sys_log.notice("Booting from gamelist per context menu...");
|
||||
Q_EMIT RequestBoot(gameinfo, cfg_keys::_default);
|
||||
Q_EMIT RequestBoot(gameinfo, cfg_mode::default_config);
|
||||
});
|
||||
|
||||
QAction* boot_manual = menu.addAction(is_current_running_game
|
||||
|
@ -962,7 +962,7 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
|
|||
if (std::string file_path = sstr(QFileDialog::getOpenFileName(this, "Select Config File", "", tr("Config Files (*.yml);;All files (*.*)"))); !file_path.empty())
|
||||
{
|
||||
sys_log.notice("Booting from gamelist per context menu...");
|
||||
Q_EMIT RequestBoot(gameinfo, file_path);
|
||||
Q_EMIT RequestBoot(gameinfo, cfg_mode::custom_selection, file_path);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1221,7 +1221,7 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
|
|||
connect(boot, &QAction::triggered, this, [this, gameinfo]()
|
||||
{
|
||||
sys_log.notice("Booting from gamelist per context menu...");
|
||||
Q_EMIT RequestBoot(gameinfo, cfg_keys::global);
|
||||
Q_EMIT RequestBoot(gameinfo, cfg_mode::global);
|
||||
});
|
||||
connect(configure, &QAction::triggered, this, [this, current_game, gameinfo]()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue