mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2025-04-06 05:56:41 +02:00
Proper enum parsing.
This commit is contained in:
parent
4b27916950
commit
0ce32d0add
@ -94,11 +94,14 @@ ConfigOptionRadio::ConfigOptionRadio(Element *parent, uint32_t value, const std:
|
||||
this->callback = callback;
|
||||
|
||||
radio = get_current_context().create_element<Radio>(this);
|
||||
radio->set_index(value);
|
||||
radio->add_index_changed_callback(std::bind(&ConfigOptionRadio::index_changed, this, std::placeholders::_1));
|
||||
for (std::string_view option : options) {
|
||||
radio->add_option(option);
|
||||
}
|
||||
|
||||
if (value < options.size()) {
|
||||
radio->set_index(value);
|
||||
}
|
||||
}
|
||||
|
||||
// ConfigSubMenu
|
||||
|
Loading…
x
Reference in New Issue
Block a user