mirror of
https://github.com/godotengine/godot.git
synced 2025-01-24 11:32:51 -05:00
Merge pull request #47534 from likeich/fix_gdnative_null_config
Fix gdnative config file set as null
This commit is contained in:
commit
bb90d3adc9
1 changed files with 2 additions and 0 deletions
|
@ -159,6 +159,8 @@ void GDNativeLibrary::_get_property_list(List<PropertyInfo> *p_list) const {
|
|||
}
|
||||
|
||||
void GDNativeLibrary::set_config_file(Ref<ConfigFile> p_config_file) {
|
||||
ERR_FAIL_COND(p_config_file.is_null());
|
||||
|
||||
set_singleton(p_config_file->get_value("general", "singleton", default_singleton));
|
||||
set_load_once(p_config_file->get_value("general", "load_once", default_load_once));
|
||||
set_symbol_prefix(p_config_file->get_value("general", "symbol_prefix", default_symbol_prefix));
|
||||
|
|
Loading…
Add table
Reference in a new issue