From f3d4ffc40a4b426b6946bf31411f9ad713a7f3b3 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Thu, 12 May 2022 16:49:29 +0200 Subject: [PATCH] Change Disable Audio Streaming checkbox to be clearer. --- Penumbra/UI/ConfigWindow.SettingsTab.Advanced.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Penumbra/UI/ConfigWindow.SettingsTab.Advanced.cs b/Penumbra/UI/ConfigWindow.SettingsTab.Advanced.cs index 79280aee..dd3a0f01 100644 --- a/Penumbra/UI/ConfigWindow.SettingsTab.Advanced.cs +++ b/Penumbra/UI/ConfigWindow.SettingsTab.Advanced.cs @@ -78,10 +78,10 @@ public partial class ConfigWindow } ImGui.SameLine(); - ImGuiUtil.LabeledHelpMarker( "Disable Audio Streaming", - "Disable streaming in the games audio engine.\n" - + "If you do not disable streaming, you can not replace sound files in the game (*.scd files), they will be ignored by Penumbra.\n\n" - + "Only touch this if you experience sound problems.\n" + ImGuiUtil.LabeledHelpMarker( "Enable Sound Modification", + "Disable streaming in the games audio engine. The game enables this by default, and Penumbra should disable it.\n" + + "If this is unchecked, you can not replace sound files in the game (*.scd files), they will be ignored by Penumbra.\n\n" + + "Only touch this if you experience sound problems like audio stuttering.\n" + "If you toggle this, make sure no modified or to-be-modified sound file is currently playing or was recently playing, else you might crash.\n" + "You might need to restart your game for this to fully take effect." ); }