diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-09-19 21:01:41 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-09-19 21:01:41 -0300 |
commit | 0a557f3bf50a0ccff444003c5adc8078862e52c7 (patch) | |
tree | 64fef2b54fa65f895239e2384cc8164549099f74 /core/os/dir_access.cpp | |
parent | 549d344f0fef5e5748ded69b6a037698ff55f8bc (diff) | |
download | redot-engine-0a557f3bf50a0ccff444003c5adc8078862e52c7.tar.gz |
- more fixes on #672 on windows
- added #660, but need help on osx, help please I don't have a mac!
- fixed #667 and #668 (eol detection in comments)
- added #670 (hint when using method without () )
Diffstat (limited to 'core/os/dir_access.cpp')
-rw-r--r-- | core/os/dir_access.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/dir_access.cpp b/core/os/dir_access.cpp index 3ab4d4bb7f..53fe792c46 100644 --- a/core/os/dir_access.cpp +++ b/core/os/dir_access.cpp @@ -155,7 +155,7 @@ Error DirAccess::make_dir_recursive(String p_dir) { full_dir=dir; } - int slices = full_dir.get_slice_count("/"); + //int slices = full_dir.get_slice_count("/"); int pos = 0; while (pos < full_dir.length()) { |