@@ -84,11 +84,17 @@ AudioSettingsWidget::AudioSettingsWidget(SettingsWindow* dialog, QWidget* parent
84
84
" lowest latency, if you encounter issues, try the SDL backend. The null backend disables all host audio "
85
85
" output." ));
86
86
dialog->registerWidgetHelp (
87
- m_ui.outputLatencyMS , tr (" Output Latency " ), tr (" %1 ms" ).arg (AudioStreamParameters::DEFAULT_OUTPUT_LATENCY_MS ),
87
+ m_ui.bufferMS , tr (" Buffer Size " ), tr (" %1 ms" ).arg (AudioStreamParameters::DEFAULT_BUFFER_MS ),
88
88
tr (" The buffer size determines the size of the chunks of audio which will be pulled by the "
89
89
" host. Smaller values reduce the output latency, but may cause hitches if the emulation "
90
90
" speed is inconsistent. Note that the Cubeb backend uses smaller chunks regardless of "
91
91
" this value, so using a low value here may not significantly change latency." ));
92
+ dialog->registerWidgetHelp (
93
+ m_ui.outputLatencyMS , tr (" Output Latency" ), tr (" %1 ms" ).arg (AudioStreamParameters::DEFAULT_OUTPUT_LATENCY_MS),
94
+ tr (" Determines how much latency there is between the audio being picked up by the host API, and "
95
+ " played through speakers." ));
96
+ dialog->registerWidgetHelp (m_ui.outputLatencyMinimal , tr (" Minimal Output Latency" ), tr (" Unchecked" ),
97
+ tr (" When enabled, the minimum supported output latency will be used for the host API." ));
92
98
dialog->registerWidgetHelp (m_ui.volume , tr (" Output Volume" ), " 100%" ,
93
99
tr (" Controls the volume of the audio played on the host." ));
94
100
dialog->registerWidgetHelp (m_ui.fastForwardVolume , tr (" Fast Forward Volume" ), " 100%" ,
0 commit comments