This commit is contained in:
TryTwo 2026-03-17 14:32:22 -06:00 committed by GitHub
commit 10f50b3424
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -279,7 +279,7 @@ void ARCodeWidget::AddCode(ActionReplay::ARCode code)
void ARCodeWidget::OnCodeAddClicked()
{
ActionReplay::ARCode ar;
ar.enabled = true;
ar.enabled = false;
m_cheat_code_editor->SetARCode(&ar);
if (m_cheat_code_editor->exec() == QDialog::Rejected)

View File

@ -218,7 +218,7 @@ void GeckoCodeWidget::OnItemChanged(QListWidgetItem* item)
void GeckoCodeWidget::AddCode()
{
Gecko::GeckoCode code;
code.enabled = true;
code.enabled = false;
m_cheat_code_editor->SetGeckoCode(&code);
if (m_cheat_code_editor->exec() == QDialog::Rejected)