Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AudioPane: Adjust DSP selection names #9941

Merged
merged 1 commit into from Jul 23, 2021

Conversation

JMC47
Copy link
Contributor

@JMC47 JMC47 commented Jul 23, 2021

I've seen a lot of users selecting DSP-LLE because they figure "how slow can audio emulation be?" and not really realizing that DSP-LLE is the reason that their game is lagging. I don't know if this is the right thing to do, but I feel like our DSP emulation is good enough that every game that needs DSP-LLE to function has it enabled by default.

Anyway, I think to help reduce user confusion it might be good to explicitly mark DSP-HLE as recommended, and mark DSP-LLE Recompiler as slow. DSP-LLE Interpreter I've marked as very slow as it is very slow.

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)"));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
m_dsp_lle = new QRadioButton(tr("DSP LLE Recompiler(slow)"));
m_dsp_lle = new QRadioButton(tr("DSP LLE Recompiler (slow)"));

To keep formatting the same.

@lioncash lioncash merged commit 885a464 into dolphin-emu:master Jul 23, 2021
11 checks passed
@JosJuice
Copy link
Member

For the sake of translations, it would be preferable to not change important strings like these when we're close to tagging a beta release. I'll see if I can do another Transifex sync to hopefully get this translated in time, though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants