diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-11 15:58:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 15:58:16 +0200 |
commit | 6b0183ec893ddea3f8ae71005b5fce1ae988e8a0 (patch) | |
tree | 762ec5df42c374a18bb5ad0ee4cd213ba0add257 /core/config | |
parent | 6107d9e180a51e3c9feb4fe8c818321c292ff86b (diff) | |
parent | 5ea1c75d639b53ef1fe84ef33bb65a844f6741b6 (diff) |
Merge pull request #49279 from Calinou/rename-string-is-abs-path-method
Rename `String.is_abs_path()` to `String.is_absolute_path()`
Diffstat (limited to 'core/config')
-rw-r--r-- | core/config/project_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/config/project_settings.cpp b/core/config/project_settings.cpp index 9baec79d43..17716beb9a 100644 --- a/core/config/project_settings.cpp +++ b/core/config/project_settings.cpp @@ -62,7 +62,7 @@ String ProjectSettings::localize_path(const String &p_path) const { } if (p_path.begins_with("res://") || p_path.begins_with("user://") || - (p_path.is_abs_path() && !p_path.begins_with(resource_path))) { + (p_path.is_absolute_path() && !p_path.begins_with(resource_path))) { return p_path.simplify_path(); } |