diff options
| author | Mai M <mathew1800@gmail.com> | 2021-05-20 11:15:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-20 11:15:25 -0400 |
| commit | 9312e45cbe575e41e81f6baff1ff7053b2cccd7c (patch) | |
| tree | 9f7681701988bb185216773834dfa91ab172394a /Source/Core | |
| parent | 1054abc9cc8e40fa5d50a2e483c01f7116228a23 (diff) | |
| parent | 5a688b74a7f687e7705d919f5158b6fa605d9038 (diff) | |
Merge pull request #9687 from Dentomologist/fix_config_descriptions_grammar
Fix config descriptions grammar
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp index 6b0d1f7989..09015179ee 100644 --- a/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp @@ -196,21 +196,14 @@ void GeneralWidget::OnEmulationStateChanged(bool running) void GeneralWidget::AddDescriptions() { -// We need QObject::tr -#if defined(_WIN32) + // We need QObject::tr static const char TR_BACKEND_DESCRIPTION[] = QT_TR_NOOP( "Selects which graphics API to use internally.<br><br>The software renderer is extremely " - "slow and only useful for debugging, so either OpenGL, Direct3D, or Vulkan are " + "slow and only useful for debugging, so any of the other backends are " "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>"); -#else - static const char TR_BACKEND_DESCRIPTION[] = QT_TR_NOOP( - "Selects which graphics API to use internally.<br><br>The software renderer is extremely " - "slow and only useful for debugging, so any of the other backends are " - "recommended.<br><br><dolphin_emphasis>If unsure, select OpenGL.</dolphin_emphasis>"); -#endif static const char TR_ADAPTER_DESCRIPTION[] = QT_TR_NOOP("Selects a hardware adapter to use.<br><br><dolphin_emphasis>If unsure, " "select the first one.</dolphin_emphasis>"); @@ -244,7 +237,7 @@ void GeneralWidget::AddDescriptions() "NetPlay.<br><br><dolphin_emphasis>If unsure, leave this unchecked.</dolphin_emphasis>"); static const char TR_LOG_RENDERTIME_DESCRIPTION[] = QT_TR_NOOP( "Logs the render time of every frame to User/Logs/render_time.txt.<br><br>Use this " - "feature when to measure the performance of Dolphin.<br><br><dolphin_emphasis>If " + "feature to measure Dolphin's performance.<br><br><dolphin_emphasis>If " "unsure, leave this unchecked.</dolphin_emphasis>"); static const char TR_SHOW_NETPLAY_MESSAGES_DESCRIPTION[] = QT_TR_NOOP("Shows chat messages, buffer changes, and desync alerts " |
