mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
Merge pull request #13427 from LillyJadeKatrin/retroachievements-code-approval-fix
Fixed Multi Config Code Approvals
This commit is contained in:
commit
225039f742
10 changed files with 61 additions and 58 deletions
|
@ -115,7 +115,7 @@ void ARCodeWidget::OnItemChanged(QListWidgetItem* item)
|
|||
m_ar_codes[m_code_list->row(item)].enabled = (item->checkState() == Qt::Checked);
|
||||
|
||||
if (!m_restart_required)
|
||||
ActionReplay::ApplyCodes(m_ar_codes, m_game_id);
|
||||
ActionReplay::ApplyCodes(m_ar_codes, m_game_id, m_game_revision);
|
||||
|
||||
UpdateList();
|
||||
SaveCodes();
|
||||
|
|
|
@ -202,7 +202,7 @@ void GeckoCodeWidget::OnItemChanged(QListWidgetItem* item)
|
|||
m_gecko_codes[index].enabled = (item->checkState() == Qt::Checked);
|
||||
|
||||
if (!m_restart_required)
|
||||
Gecko::SetActiveCodes(m_gecko_codes, m_game_id);
|
||||
Gecko::SetActiveCodes(m_gecko_codes, m_game_id, m_game_revision);
|
||||
|
||||
SaveCodes();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue