mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
settings: enable dynamic reload of some emu values
This commit is contained in:
parent
f2b530823b
commit
d91f8193b0
9 changed files with 100 additions and 63 deletions
|
@ -967,10 +967,14 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
|
|||
connect(configure, &QAction::triggered, [=]
|
||||
{
|
||||
settings_dialog dlg(m_gui_settings, m_emu_settings, 0, this, &currGame);
|
||||
if (dlg.exec() == QDialog::Accepted && !gameinfo->hasCustomConfig)
|
||||
if (dlg.exec() == QDialog::Accepted)
|
||||
{
|
||||
gameinfo->hasCustomConfig = true;
|
||||
ShowCustomConfigIcon(item);
|
||||
if (!gameinfo->hasCustomConfig)
|
||||
{
|
||||
gameinfo->hasCustomConfig = true;
|
||||
ShowCustomConfigIcon(item);
|
||||
}
|
||||
Q_EMIT NotifyEmuSettingsChange();
|
||||
}
|
||||
});
|
||||
connect(pad_configure, &QAction::triggered, [=]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue