Skip to content

Commit 1798917

Browse files
committed
Qt: Fix buffer size help text
1 parent 09e7855 commit 1798917

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/duckstation-qt/audiosettingswidget.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,17 @@ AudioSettingsWidget::AudioSettingsWidget(SettingsWindow* dialog, QWidget* parent
8484
"lowest latency, if you encounter issues, try the SDL backend. The null backend disables all host audio "
8585
"output."));
8686
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),
8888
tr("The buffer size determines the size of the chunks of audio which will be pulled by the "
8989
"host. Smaller values reduce the output latency, but may cause hitches if the emulation "
9090
"speed is inconsistent. Note that the Cubeb backend uses smaller chunks regardless of "
9191
"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."));
9298
dialog->registerWidgetHelp(m_ui.volume, tr("Output Volume"), "100%",
9399
tr("Controls the volume of the audio played on the host."));
94100
dialog->registerWidgetHelp(m_ui.fastForwardVolume, tr("Fast Forward Volume"), "100%",

0 commit comments

Comments
 (0)