diff options
| author | Juan Linietsky | 2017-10-02 16:38:39 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-10-03 17:36:14 -0300 |
| commit | 3cadecf17be08198f8a28e0674bfde30c8fc824f (patch) | |
| tree | d7f50c210e56efbce70253485c69c23aa3af5bad /core/project_settings.cpp | |
| parent | a848fa6cdeb00f0c40f259cde2d59112272e3c51 (diff) | |
| download | godot-3cadecf17be08198f8a28e0674bfde30c8fc824f.tar.gz godot-3cadecf17be08198f8a28e0674bfde30c8fc824f.tar.zst godot-3cadecf17be08198f8a28e0674bfde30c8fc824f.zip | |
Diffstat (limited to 'core/project_settings.cpp')
| -rw-r--r-- | core/project_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp index 14ebe87dc..3e27597e7 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -152,7 +152,7 @@ bool ProjectSettings::_set(const StringName &p_name, const Variant &p_value) { bool override_valid = false; for (int i = 1; i < s.size(); i++) { String feature = s[i].strip_edges(); - if (OS::get_singleton()->check_feature_support(feature) || custom_features.has(feature)) { + if (OS::get_singleton()->has_feature(feature) || custom_features.has(feature)) { override_valid = true; break; } |
