From 78ef36837792d9c49048afa4d82d462ce5733994 Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 14 Sep 2023 16:17:12 -0400 Subject: [PATCH] added cvars to menu --- soh/soh/SohMenuBar.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/soh/soh/SohMenuBar.cpp b/soh/soh/SohMenuBar.cpp index efd34afb8..47e016b90 100644 --- a/soh/soh/SohMenuBar.cpp +++ b/soh/soh/SohMenuBar.cpp @@ -460,6 +460,12 @@ void DrawSettingsMenu() { #endif UIWidgets::PaddedEnhancementCheckbox("Disable Idle Camera Re-Centering", "gA11yDisableIdleCam"); UIWidgets::Tooltip("Disables the automatic re-centering of the camera when idle."); + + UIWidgets::PaddedEnhancementCheckbox("Accessible Audio Cues", "gA11yAudioInteraction"); + UIWidgets::Tooltip("Enables accessibility audio cues"); + + UIWidgets::PaddedEnhancementCheckbox("Extract Sfx", "gExtractSfx"); + UIWidgets::Tooltip("Extracts the sfx to be used in accessible audio cues, must be run once for the audio cues to play then restart game"); ImGui::EndMenu(); }