| 6332 | } |
| 6333 | |
| 6334 | void AS_SetConfigValueBool(std::string key, bool value) { |
| 6335 | config.GetRef(key) = value; |
| 6336 | config.ReloadDynamicSettings(); |
| 6337 | } |
| 6338 | |
| 6339 | void AS_SetConfigValueInt(std::string key, int value) { |
| 6340 | config.GetRef(key) = value; |
nothing calls this directly
no test coverage detected