diff options
| author | Tilka <tilkax@gmail.com> | 2024-08-18 17:26:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-18 17:26:40 +0100 |
| commit | 46454f9b4e1515a4cd4aa7f2f2d0a6b8a474f83c (patch) | |
| tree | 8ee953d438cb497733d8c02ef7436c3741e621c2 /Source/Core | |
| parent | 10f06a48ef3e1f5d8460222bb5290d598f934ba2 (diff) | |
| parent | 0b33d293ee61b68198bccc818273275195ab33e5 (diff) | |
Merge pull request #12974 from JosJuice/simplify-speed-limit-description
DolphinQt: Simplify the Speed Limit description
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Settings/GeneralPane.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index df56d27e50..06715ceb65 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -400,13 +400,12 @@ void GeneralPane::AddDescriptions() "<br><br>This setting cannot be changed while emulation is active." "<br><br><dolphin_emphasis>If unsure, leave this checked.</dolphin_emphasis>"); #endif - static constexpr char TR_SPEEDLIMIT_DESCRIPTION[] = QT_TR_NOOP( - "Sets the maximum time scale of emulation. Values higher than 100% will accelerate emulated " - "time by processing faster than the original hardware, while values lower than 100% will " - "slow emulated time. Unlimited will emulate as fast as your host hardware can run." - "<br><br>Higher speeds are proportionally more costly to emulate. Depending on the title, " - "your settings, and your host hardware, some of these values may not be sustainable." - "<br><br><dolphin_emphasis>If unsure, select 100%.</dolphin_emphasis>"); + static constexpr char TR_SPEEDLIMIT_DESCRIPTION[] = + QT_TR_NOOP("Controls how fast emulation runs relative to the original hardware." + "<br><br>Values higher than 100% will emulate faster than the original hardware " + "can run, if your hardware is able to keep up. Values lower than 100% will slow " + "emulation instead. Unlimited will emulate as fast as your hardware is able to." + "<br><br><dolphin_emphasis>If unsure, select 100%.</dolphin_emphasis>"); static constexpr char TR_UPDATE_TRACK_DESCRIPTION[] = QT_TR_NOOP( "Selects which update track Dolphin uses when checking for updates at startup. If a new " "update is available, Dolphin will show a list of changes made since your current version " |
