Changed boolean parameters in last PR

Changed boolean parameters in last PR as per discord
This commit is contained in:
PugsyMAME 2024-11-11 00:13:24 +00:00 committed by GitHub
parent b691388e62
commit e0fa361f75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -529,7 +529,7 @@ void GameCheatSettingsWidget::importCodes(const std::string& file_contents)
}
reloadList();
g_emu_thread->reloadCheats(true, true, false, true);
g_emu_thread->reloadCheats(true, false, false, true);
}
void GameCheatSettingsWidget::newCode()
@ -544,7 +544,7 @@ void GameCheatSettingsWidget::newCode()
// no need to reload cheats yet, it's not active. just refresh the list
reloadList();
g_emu_thread->reloadCheats(true, true, false, true);
g_emu_thread->reloadCheats(true, false, false, true);
}
void GameCheatSettingsWidget::editCode(const std::string_view code_name)