From 28416f651e2df63b02c91e489890b2a1def353c3 Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Tue, 19 Nov 2024 14:18:11 +0300 Subject: [PATCH] Change some sounds used in options menu. --- UnleashedRecomp/ui/options_menu.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/UnleashedRecomp/ui/options_menu.cpp b/UnleashedRecomp/ui/options_menu.cpp index 79219106..e1dbd23a 100644 --- a/UnleashedRecomp/ui/options_menu.cpp +++ b/UnleashedRecomp/ui/options_menu.cpp @@ -324,7 +324,7 @@ static void DrawCategories() if (moveLeft || moveRight) { ResetSelection(); - PlaySound("sys_worldmap_cursor"); + PlaySound("sys_actstg_score"); } auto drawList = ImGui::GetForegroundDrawList(); @@ -448,7 +448,10 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef* conf VideoConfigValueChangedCallback(config); - PlaySound("sys_worldmap_cursor"); + if (config->Value) + PlaySound("sys_actstg_pausedecide"); + else + PlaySound("sys_actstg_pausecansel"); } } else @@ -632,7 +635,7 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef* conf config->Value = it->first; if (increment || decrement) - PlaySound("sys_worldmap_cursor"); + PlaySound("sys_actstg_pausecursor"); } else if constexpr (std::is_same_v) {