mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
rpcs3qt/settings_dialog: fix Audio Buffering setting for FAudio backend
This commit is contained in:
parent
9e753e1ffd
commit
6944e180c8
|
|
@ -788,7 +788,7 @@ settings_dialog::settings_dialog(std::shared_ptr<gui_settings> guiSettings, std:
|
|||
|
||||
auto EnableBuffering = [this, EnableBufferingOptions](const QString& text)
|
||||
{
|
||||
const bool enabled = text == "XAudio2" || text == "OpenAL";
|
||||
const bool enabled = text == "XAudio2" || text == "OpenAL" || text == "FAudio";
|
||||
ui->enableBuffering->setEnabled(enabled);
|
||||
EnableBufferingOptions(enabled && ui->enableBuffering->isChecked());
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue