Skip to content
Permalink
Browse files
Merge pull request #9941 from JMC47/dsprecommendations
AudioPane: Adjust DSP selection names
  • Loading branch information
lioncash committed Jul 23, 2021
2 parents c080fc7 + 59e6048 commit 885a464
Showing 1 changed file with 3 additions and 3 deletions.
@@ -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);

0 comments on commit 885a464

Please sign in to comment.