From 81098da509749175ee3c8073cadfcd390c8c1a85 Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Sat, 4 Oct 2025 22:09:10 +0200 Subject: [PATCH] did really no one ever test this (#3702) --- src/common/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 9b2d3b2ec..ee9a12874 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -1003,8 +1003,8 @@ void load(const std::filesystem::path& path, bool is_game_specific) { void sortTomlSections(toml::ordered_value& data) { toml::ordered_value ordered_data; - std::vector section_order = {"General", "Input", "GPU", "Vulkan", - "Debug", "Keys", "GUI", "Settings"}; + std::vector section_order = {"General", "Input", "Audio", "GPU", "Vulkan", + "Debug", "Keys", "GUI", "Settings"}; for (const auto& section : section_order) { if (data.contains(section)) {