Fix SandMan Settings UI showing inverse of actual value for AutoRunSoftCompat

Closes #1678
This commit is contained in:
Mitch Capper 2022-03-11 23:23:02 -08:00
parent fd83db5202
commit eaac6e4e6d
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ CSettingsWindow::CSettingsWindow(QWidget *parent)
connect(ui.btnDelCompat, SIGNAL(clicked(bool)), this, SLOT(OnDelCompat()));
m_CompatLoaded = 0;
m_CompatChanged = false;
ui.chkNoCompat->setChecked(theConf->GetBool("Options/AutoRunSoftCompat", true));
ui.chkNoCompat->setChecked(!theConf->GetBool("Options/AutoRunSoftCompat", true));
connect(ui.treeCompat, SIGNAL(itemClicked(QTreeWidgetItem*, int)), this, SLOT(OnTemplateClicked(QTreeWidgetItem*, int)));