From 4c693db2244b0b90db4d8db58fdaa746508ca05b Mon Sep 17 00:00:00 2001 From: briaguya <70942617+briaguya-ai@users.noreply.github.com> Date: Tue, 26 Sep 2023 09:47:18 -0400 Subject: [PATCH] tweak shuffle pool tab to better fit voice option (#3216) --- soh/soh/Enhancements/audio/AudioEditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/Enhancements/audio/AudioEditor.cpp b/soh/soh/Enhancements/audio/AudioEditor.cpp index fd47b8e25..0e7244122 100644 --- a/soh/soh/Enhancements/audio/AudioEditor.cpp +++ b/soh/soh/Enhancements/audio/AudioEditor.cpp @@ -330,7 +330,7 @@ ImVec4 GetSequenceTypeColor(SeqType type) { case SEQ_SFX: return ImVec4(0.4f, 0.33f, 0.0f, 1.0f); case SEQ_VOICE: - return ImVec4(0.4f, 0.33f, 0.0f, 1.0f); + return ImVec4(0.3f, 0.42f, 0.09f, 1.0f); case SEQ_INSTRUMENT: return ImVec4(0.0f, 0.25f, 0.5f, 1.0f); case SEQ_BGM_CUSTOM: @@ -481,7 +481,7 @@ void AudioEditor::DrawElement() { } } - ImGui::BeginTable("sequenceTypes", 8, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders); + ImGui::BeginTable("sequenceTypes", 9, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders); ImGui::TableNextColumn(); ImGui::PushStyleColor(ImGuiCol_Header, GetSequenceTypeColor(SEQ_BGM_WORLD));