mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 08:52:36 +00:00
revert to deprecated statechanged
This commit is contained in:
parent
18e60bfb58
commit
54cf5e4024
@ -150,11 +150,10 @@ SettingsDialog::SettingsDialog(std::span<const QString> physical_devices,
|
||||
emit CompatibilityChanged();
|
||||
});
|
||||
|
||||
connect(ui->enableCompatibilityCheckBox, &QCheckBox::checkStateChanged, this,
|
||||
[this](Qt::CheckState state) {
|
||||
Config::setCompatibilityEnabled(state);
|
||||
emit CompatibilityChanged();
|
||||
});
|
||||
connect(ui->enableCompatibilityCheckBox, &QCheckBox::stateChanged, this, [this](int state) {
|
||||
Config::setCompatibilityEnabled(state);
|
||||
emit CompatibilityChanged();
|
||||
});
|
||||
}
|
||||
|
||||
// Input TAB
|
||||
|
Loading…
Reference in New Issue
Block a user