mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-13 04:42:30 -05:00
Cheats: Refresh active code after editing it.
This commit is contained in:
@@ -224,6 +224,7 @@ void GeckoCodeWidget::EditCode()
|
||||
return;
|
||||
|
||||
const int index = item->data(Qt::UserRole).toInt();
|
||||
const bool enabled = item->checkState() == Qt::Checked;
|
||||
|
||||
m_cheat_code_editor->SetGeckoCode(&m_gecko_codes[index]);
|
||||
if (m_cheat_code_editor->exec() == QDialog::Rejected)
|
||||
@@ -231,6 +232,9 @@ void GeckoCodeWidget::EditCode()
|
||||
|
||||
SaveCodes();
|
||||
UpdateList();
|
||||
|
||||
if (!m_restart_required && enabled)
|
||||
Gecko::SetActiveCodes(m_gecko_codes, m_game_id, m_game_revision);
|
||||
}
|
||||
|
||||
void GeckoCodeWidget::RemoveCode()
|
||||
|
||||
Reference in New Issue
Block a user