mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
Merge pull request #8215 from CookiePLMonster/appverifier-sanitize
Fixed various errors spotted with Application Verifier
This commit is contained in:
commit
e388f01e11
13 changed files with 38 additions and 29 deletions
|
@ -300,7 +300,7 @@ void GeneralPane::OnSaveConfig()
|
|||
|
||||
#if defined(USE_ANALYTICS) && USE_ANALYTICS
|
||||
Settings::Instance().SetAnalyticsEnabled(m_checkbox_enable_analytics->isChecked());
|
||||
DolphinAnalytics::Instance()->ReloadConfig();
|
||||
DolphinAnalytics::Instance().ReloadConfig();
|
||||
#endif
|
||||
settings.bCPUThread = m_checkbox_dualcore->isChecked();
|
||||
Config::SetBaseOrCurrent(Config::MAIN_CPU_THREAD, m_checkbox_dualcore->isChecked());
|
||||
|
@ -325,8 +325,8 @@ void GeneralPane::OnSaveConfig()
|
|||
#if defined(USE_ANALYTICS) && USE_ANALYTICS
|
||||
void GeneralPane::GenerateNewIdentity()
|
||||
{
|
||||
DolphinAnalytics::Instance()->GenerateNewIdentity();
|
||||
DolphinAnalytics::Instance()->ReloadConfig();
|
||||
DolphinAnalytics::Instance().GenerateNewIdentity();
|
||||
DolphinAnalytics::Instance().ReloadConfig();
|
||||
ModalMessageBox message_box(this);
|
||||
message_box.setIcon(QMessageBox::Information);
|
||||
message_box.setWindowTitle(tr("Identity Generation"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue