From a1f1a1d7987912fffb1b174f09adda47d270decb Mon Sep 17 00:00:00 2001 From: Emmanuel Leblond Date: Tue, 26 Nov 2019 13:42:18 +0100 Subject: [PATCH] Revert "Fix localise_path method so that uncached scripts don't sometimes get loaded with two backslashes" This reverts commit 1342551664091c1ceb931ee45d9c43f09df5f1ff. --- core/project_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/project_settings.cpp b/core/project_settings.cpp index ba5cdd782f6..067578e3542 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -107,7 +107,7 @@ String ProjectSettings::localize_path(const String &p_path) const { if (plocal == "") { return ""; }; - return plocal + path.substr((sep + 1), path.size() - (sep + 1)); + return plocal + path.substr(sep, path.size() - sep); }; }