AudioPane: Adjust DSP selection names

This commit is contained in:
JMC47 2021-07-22 20:11:32 -04:00
parent db5a78781f
commit 59e6048200
1 changed files with 3 additions and 3 deletions

View File

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