diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-06-18 11:12:08 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-06-18 11:13:03 -0300 |
commit | 61655d6dc2912424de937e2870b6a5ad346c3daf (patch) | |
tree | ebc5b80714281978ad071d2c288ac488d29f76a2 /core/io | |
parent | a7fc04626af238bf9a80c4f3b569e1c5d70465c9 (diff) |
Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/file_access_memory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/io/file_access_memory.cpp b/core/io/file_access_memory.cpp index 7db3499505..11a425001e 100644 --- a/core/io/file_access_memory.cpp +++ b/core/io/file_access_memory.cpp @@ -46,7 +46,7 @@ void FileAccessMemory::register_file(String p_name, Vector<uint8_t> p_data) { name = Globals::get_singleton()->globalize_path(p_name); else name = p_name; - name = DirAccess::normalize_path(name); + //name = DirAccess::normalize_path(name); (*files)[name] = p_data; } @@ -68,7 +68,7 @@ FileAccess* FileAccessMemory::create() { bool FileAccessMemory::file_exists(const String& p_name) { String name = fix_path(p_name); - name = DirAccess::normalize_path(name); +// name = DirAccess::normalize_path(name); return files && (files->find(name) != NULL); } @@ -87,7 +87,7 @@ Error FileAccessMemory::_open(const String& p_path, int p_mode_flags) { ERR_FAIL_COND_V(!files, ERR_FILE_NOT_FOUND); String name = fix_path(p_path); - name = DirAccess::normalize_path(name); +// name = DirAccess::normalize_path(name); Map<String, Vector<uint8_t> >::Element* E = files->find(name); ERR_FAIL_COND_V(!E, ERR_FILE_NOT_FOUND); |