Merge pull request #9941 from JMC47/dsprecommendations

AudioPane: Adjust DSP selection names
This commit is contained in:
Mai M 2021-07-22 21:37:49 -04:00 committed by GitHub
commit 885a4646f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -48,9 +48,9 @@ void AudioPane::CreateWidgets()
auto* dsp_layout = new QVBoxLayout;
dsp_box->setLayout(dsp_layout);
m_dsp_hle = new QRadioButton(tr("DSP HLE (fast)"));
m_dsp_lle = new QRadioButton(tr("DSP LLE Recompiler"));
m_dsp_interpreter = new QRadioButton(tr("DSP LLE Interpreter (slow)"));
m_dsp_hle = new QRadioButton(tr("DSP HLE (recommended)"));
m_dsp_lle = new QRadioButton(tr("DSP LLE Recompiler (slow)"));
m_dsp_interpreter = new QRadioButton(tr("DSP LLE Interpreter (very slow)"));
dsp_layout->addStretch(1);
dsp_layout->addWidget(m_dsp_hle);