You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Remove unnecessary assignments
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user