Remove unnecessary assignments
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
parent
aa5b6ed13e
commit
80fb8db31f
19 changed files with 31 additions and 56 deletions
|
|
@ -893,8 +893,7 @@ Error EditorExportPlatformIOS::_walk_dir_recursive(Ref<DirAccess> &p_da, FileHan
|
|||
p_da->list_dir_end();
|
||||
|
||||
for (int i = 0; i < dirs.size(); ++i) {
|
||||
String dir = dirs[i];
|
||||
p_da->change_dir(dir);
|
||||
p_da->change_dir(dirs[i]);
|
||||
Error err = _walk_dir_recursive(p_da, p_handler, p_userdata);
|
||||
p_da->change_dir("..");
|
||||
if (err) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue