Merge pull request #17636 from rainerdeyke/fix_issue_17585

Fixes moving files causes scene corruption
This commit is contained in:
Juan Linietsky 2018-04-07 16:56:02 -03:00 committed by GitHub
commit 5a1a90c3db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -1162,9 +1162,11 @@ Error ResourceFormatLoaderBinary::rename_dependencies(const String &p_path, cons
ERR_FAIL_V(ERR_FILE_UNRECOGNIZED);
}
fw->store_32(VERSION_MAJOR); //current version
fw->store_32(VERSION_MINOR);
fw->store_32(FORMAT_VERSION);
// Since we're not actually converting the file contents, leave the version
// numbers in the file untouched.
fw->store_32(ver_major);
fw->store_32(ver_minor);
fw->store_32(ver_format);
save_ustring(fw, get_ustring(f)); //type