diff options
| author | Dentomologist <dentomologist@gmail.com> | 2024-11-03 11:35:47 -0800 |
|---|---|---|
| committer | Dentomologist <dentomologist@gmail.com> | 2024-11-03 12:28:30 -0800 |
| commit | 47a86d920f965a3799fa5f46734497b88e8eba0a (patch) | |
| tree | 79111474c6e0985c95ea7213e87a3c77a6b666c6 /Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp | |
| parent | 7b8610f4ea4f90074c79c750c9a27fc90d9dc99f (diff) | |
GeneralWidget: Recommend default video backend in tooltip
Recommend the platform's default video backend in the Backend tooltip
instead of always recommending OpenGL.
Diffstat (limited to 'Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp index 3574e6893a..b5f5a6b05a 100644 --- a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp @@ -239,7 +239,7 @@ void GeneralWidget::AddDescriptions() "recommended. Different games and different GPUs will behave differently on each " "backend, so for the best emulation experience it is recommended to try each and " "select the backend that is least problematic.<br><br><dolphin_emphasis>If unsure, " - "select OpenGL.</dolphin_emphasis>"); + "select %1.</dolphin_emphasis>"); static const char TR_FULLSCREEN_DESCRIPTION[] = QT_TR_NOOP("Uses the entire screen for rendering.<br><br>If disabled, a " "render window will be created instead.<br><br><dolphin_emphasis>If " @@ -311,7 +311,9 @@ void GeneralWidget::AddDescriptions() "unsure, leave this unchecked.</dolphin_emphasis>"); m_backend_combo->SetTitle(tr("Backend")); - m_backend_combo->SetDescription(tr(TR_BACKEND_DESCRIPTION)); + m_backend_combo->SetDescription( + tr(TR_BACKEND_DESCRIPTION) + .arg(QString::fromStdString(VideoBackendBase::GetDefaultBackendDisplayName()))); m_adapter_combo->SetTitle(tr("Adapter")); |
