Change Disable Audio Streaming checkbox to be clearer.

This commit is contained in:
Ottermandias 2022-05-12 16:49:29 +02:00
parent e85d57b094
commit f3d4ffc40a

View file

@ -78,10 +78,10 @@ public partial class ConfigWindow
} }
ImGui.SameLine(); ImGui.SameLine();
ImGuiUtil.LabeledHelpMarker( "Disable Audio Streaming", ImGuiUtil.LabeledHelpMarker( "Enable Sound Modification",
"Disable streaming in the games audio engine.\n" "Disable streaming in the games audio engine. The game enables this by default, and Penumbra should disable it.\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" + "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.\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" + "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." ); + "You might need to restart your game for this to fully take effect." );
} }