update options

This commit is contained in:
sp2xdev
2025-09-29 19:27:40 -07:00
parent 1fdd270480
commit 276874f882
2 changed files with 16 additions and 14 deletions
+10 -7
View File
@@ -359,7 +359,7 @@ static const std::vector<OptionDefinition> OPTION_DEFINITIONS = {
.name = "r", .name = "r",
.desc = "Set custom SOFTID override", .desc = "Set custom SOFTID override",
.type = OptionType::Text, .type = OptionType::Text,
.category = "Network (Development)", .category = "Development",
.sensitive = true, .sensitive = true,
}, },
{ {
@@ -554,9 +554,9 @@ static const std::vector<OptionDefinition> OPTION_DEFINITIONS = {
.category = "Game Options", .category = "Game Options",
}, },
{ {
.title = "IIDX BIO2 Firmware", .title = "IIDX BIO2 Firmware Update",
.name = "iidxbio2fw", .name = "iidxbio2fw",
.desc = "Enables BIO2 firmware updates", .desc = "Enables BIO2 firmware updates. WARNING - can cause semi-permanent change to your I/O board",
.type = OptionType::Bool, .type = OptionType::Bool,
.hidden = true, .hidden = true,
.game_name = "Beatmania IIDX", .game_name = "Beatmania IIDX",
@@ -1136,11 +1136,11 @@ static const std::vector<OptionDefinition> OPTION_DEFINITIONS = {
.category = "Path Overrides", .category = "Path Overrides",
}, },
{ {
.title = "Intel SDE Folder", .title = "Intel SDE",
.name = "sde", .name = "sde",
.desc = "Path to Intel SDE kit path for automatic attaching", .desc = "Path to Intel SDE kit path for automatic attaching",
.type = OptionType::Text, .type = OptionType::Text,
.category = "Path Overrides", .category = "Development",
}, },
{ {
.title = "ea3-config.xml Override", .title = "ea3-config.xml Override",
@@ -1545,10 +1545,13 @@ static const std::vector<OptionDefinition> OPTION_DEFINITIONS = {
.title = "Spice Audio Hook Backend", .title = "Spice Audio Hook Backend",
.name = "audiobackend", .name = "audiobackend",
.desc = "Selects the audio backend to use when spice audio hook is enabled, overriding exclusive WASAPI. " .desc = "Selects the audio backend to use when spice audio hook is enabled, overriding exclusive WASAPI. "
" Does nothing for games that do not output to exclusive WASAPI", "Does nothing for games that do not output to exclusive WASAPI",
.type = OptionType::Enum, .type = OptionType::Enum,
.category = "Audio", .category = "Audio",
.elements = {{"asio", "ASIO"}, {"waveout", "waveOut"}}, .elements = {
{"asio", "ASIO"},
{"waveout", "broken, do not use"}
},
}, },
{ {
.title = "Spice Audio Hook ASIO Driver ID", .title = "Spice Audio Hook ASIO Driver ID",
+1 -2
View File
@@ -2633,11 +2633,11 @@ namespace overlay::windows {
// check hidden option // check hidden option
if (!this->options_show_hidden && option.value.empty()) { if (!this->options_show_hidden && option.value.empty()) {
// skip hidden entries // skip hidden entries
if (definition.hidden) { if (definition.hidden) {
continue; continue;
} }
}
// check for game exclusivity // check for game exclusivity
if (!definition.game_name.empty()) { if (!definition.game_name.empty()) {
@@ -2645,7 +2645,6 @@ namespace overlay::windows {
continue; continue;
} }
} }
}
// filter // filter
if (filter != nullptr) { if (filter != nullptr) {