diff options
| author | 2023-05-19 00:51:57 -0400 | |
|---|---|---|
| committer | 2023-07-21 10:56:07 -0400 | |
| commit | 7734127f9e9d950c50045942bb24f76652e86788 (patch) | |
| tree | 8808ca96ca8cd701a5a3384fd384d401803e479f /src | |
| parent | settings: Make volume runtime-configurable (diff) | |
| download | yuzu-7734127f9e9d950c50045942bb24f76652e86788.tar.gz yuzu-7734127f9e9d950c50045942bb24f76652e86788.tar.xz yuzu-7734127f9e9d950c50045942bb24f76652e86788.zip | |
shared_translation: Add missing tooltips
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/shared_translation.cpp | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/src/yuzu/configuration/shared_translation.cpp b/src/yuzu/configuration/shared_translation.cpp index 8fd8f3076..49cb94d2e 100644 --- a/src/yuzu/configuration/shared_translation.cpp +++ b/src/yuzu/configuration/shared_translation.cpp | |||
| @@ -45,13 +45,26 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) { | |||
| 45 | 45 | ||
| 46 | // Cpu Unsafe | 46 | // Cpu Unsafe |
| 47 | INSERT(Settings, cpuopt_unsafe_unfuse_fma, | 47 | INSERT(Settings, cpuopt_unsafe_unfuse_fma, |
| 48 | "Unfuse FMA (improve performance on CPUs without FMA)", ""); | 48 | "Unfuse FMA (improve performance on CPUs without FMA)", |
| 49 | INSERT(Settings, cpuopt_unsafe_reduce_fp_error, "Faster FRSQRTE and FRECPE", ""); | 49 | "This option improves speed by reducing accuracy of fused-multiply-add instructions on " |
| 50 | "CPUs without native FMA support."); | ||
| 51 | INSERT(Settings, cpuopt_unsafe_reduce_fp_error, "Faster FRSQRTE and FRECPE", | ||
| 52 | "This option improves the speed of some approximate floating-point functions by using " | ||
| 53 | "less accurate native approximations."); | ||
| 50 | INSERT(Settings, cpuopt_unsafe_ignore_standard_fpcr, "Faster ASIMD instructions (32 bits only)", | 54 | INSERT(Settings, cpuopt_unsafe_ignore_standard_fpcr, "Faster ASIMD instructions (32 bits only)", |
| 51 | ""); | 55 | "This option improves the speed of 32 bits ASIMD floating-point functions by running " |
| 52 | INSERT(Settings, cpuopt_unsafe_inaccurate_nan, "Inaccurate NaN handling", ""); | 56 | "with incorrect rounding modes."); |
| 53 | INSERT(Settings, cpuopt_unsafe_fastmem_check, "Disable address space checks", ""); | 57 | INSERT(Settings, cpuopt_unsafe_inaccurate_nan, "Inaccurate NaN handling", |
| 54 | INSERT(Settings, cpuopt_unsafe_ignore_global_monitor, "Ignore global monitor", ""); | 58 | "This option improves speed by removing NaN checking. Please note this also reduces " |
| 59 | "accuracy of certain floating-point instructions."); | ||
| 60 | INSERT( | ||
| 61 | Settings, cpuopt_unsafe_fastmem_check, "Disable address space checks", | ||
| 62 | "This option improves speed by eliminating a safety check before every memory read/write " | ||
| 63 | "in guest. Disabling it may allow a game to read/write the emulator's memory."); | ||
| 64 | INSERT(Settings, cpuopt_unsafe_ignore_global_monitor, "Ignore global monitor", | ||
| 65 | "This option improves speed by relying only on the semantics of cmpxchg to ensure " | ||
| 66 | "safety of exclusive access instructions. Please note this may result in deadlocks and " | ||
| 67 | "other race conditions."); | ||
| 55 | 68 | ||
| 56 | // Renderer | 69 | // Renderer |
| 57 | INSERT(Settings, renderer_backend, "API:", ""); | 70 | INSERT(Settings, renderer_backend, "API:", ""); |
| @@ -114,7 +127,8 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) { | |||
| 114 | INSERT(Settings, device_name, "Device Name", ""); | 127 | INSERT(Settings, device_name, "Device Name", ""); |
| 115 | INSERT(Settings, custom_rtc, "Custom RTC", ""); | 128 | INSERT(Settings, custom_rtc, "Custom RTC", ""); |
| 116 | INSERT(Settings, custom_rtc_enabled, "", ""); | 129 | INSERT(Settings, custom_rtc_enabled, "", ""); |
| 117 | INSERT(Settings, language_index, "Language:", ""); | 130 | INSERT(Settings, language_index, |
| 131 | "Language:", "Note: this can be overridden when region setting is auto-select"); | ||
| 118 | INSERT(Settings, region_index, "Region:", ""); | 132 | INSERT(Settings, region_index, "Region:", ""); |
| 119 | INSERT(Settings, time_zone_index, "Time Zone:", ""); | 133 | INSERT(Settings, time_zone_index, "Time Zone:", ""); |
| 120 | INSERT(Settings, sound_index, "Sound Output Mode:", ""); | 134 | INSERT(Settings, sound_index, "Sound Output Mode:", ""); |