1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

-Fixed EditorDirDialog, which was really old and needed to use EditorFileSystem

-Fixed refactoring tools to work with imported scenes (properly move .import files)
This commit is contained in:
Juan Linietsky
2017-09-03 00:22:54 -03:00
parent 53e7f55a89
commit ce28452109
4 changed files with 57 additions and 91 deletions

View File

@@ -1117,6 +1117,9 @@ Error ResourceFormatLoaderBinary::rename_dependencies(const String &p_path, cons
memdelete(f);
}
ERR_FAIL_COND_V(!fw, ERR_CANT_CREATE);
uint8_t magic[4] = { 'R', 'S', 'R', 'C' };
fw->store_buffer(magic, 4);
}
bool big_endian = f->get_32();