diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-30 20:45:45 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 20:45:45 -0300 |
commit | bcd73fc00a913babb501dd119d3d833aceaf88da (patch) | |
tree | f5213fab100f72bbfecba792e0b05b72c2ddd2da /drivers/unix/os_unix.cpp | |
parent | d085b2d04d6a6f972cc252532dbbf07f0d54fc3c (diff) | |
parent | d11c1afc0497894edd8307434948fc8fb4bb1b11 (diff) |
Merge pull request #52240 from Rubonnek/rename-rel-path
Rename `String::is_rel_path` to `String::is_relative_path`
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index f6a3e93b55..3032c31629 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -392,7 +392,7 @@ String OS_Unix::get_locale() const { Error OS_Unix::open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path) { String path = p_path; - if (FileAccess::exists(path) && path.is_rel_path()) { + if (FileAccess::exists(path) && path.is_relative_path()) { // dlopen expects a slash, in this case a leading ./ for it to be interpreted as a relative path, // otherwise it will end up searching various system directories for the lib instead and finally failing. path = "./" + path; |