| 527 | } |
| 528 | |
| 529 | void ModMenu::mod_string_option_changed(const std::string &id, const std::string &value) { |
| 530 | if (active_mod_index >= 0) { |
| 531 | recomp::mods::set_mod_config_value(mod_details[active_mod_index].mod_id, id, value); |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | void ModMenu::mod_number_option_changed(const std::string &id, double value) { |
| 536 | if (active_mod_index >= 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected