1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-24 15:26:15 +00:00

Fix root path resolution on PCK file

This commit is contained in:
George Marques
2016-09-03 19:35:42 -03:00
parent e01fdd8a86
commit 1d759f02e6

View File

@@ -398,6 +398,8 @@ Error DirAccessPack::change_dir(String p_dir) {
nd = nd.simplify_path(); nd = nd.simplify_path();
if (nd == "") nd = ".";
if (nd.begins_with("/")) { if (nd.begins_with("/")) {
nd = nd.replace_first("/", ""); nd = nd.replace_first("/", "");
absolute = true; absolute = true;