aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde2016-11-22 10:16:41 +0100
committerGitHub2016-11-22 10:16:41 +0100
commit830ab4ea8da61708deb681034e66a70f847dadf1 (patch)
treee8b616c74a47a31a8b058429199d2b2c223dc7bb
parent9e2d09f580c319e511d3a816bba8a54138a4bcd1 (diff)
parentcdc97ca4535e99fdcb10f21c4609c2f79e94589b (diff)
downloadgodot-830ab4ea8da61708deb681034e66a70f847dadf1.tar.gz
godot-830ab4ea8da61708deb681034e66a70f847dadf1.tar.zst
godot-830ab4ea8da61708deb681034e66a70f847dadf1.zip
-rw-r--r--core/globals.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/globals.cpp b/core/globals.cpp
index bef40ff33..78b97882b 100644
--- a/core/globals.cpp
+++ b/core/globals.cpp
@@ -54,7 +54,8 @@ String Globals::localize_path(const String& p_path) const {
if (resource_path=="")
return p_path; //not initialied yet
- if (p_path.begins_with("res://") || p_path.begins_with("user://") || p_path.is_abs_path())
+ if (p_path.begins_with("res://") || p_path.begins_with("user://") ||
+ (p_path.is_abs_path() && !p_path.begins_with(resource_path)))
return p_path.simplify_path();