1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-05 17:15:09 +00:00

Restore FileAccess.close method.

This commit is contained in:
bruvzg
2023-02-16 15:25:32 +02:00
parent 953383328a
commit bc95b0b171
22 changed files with 76 additions and 1 deletions

View File

@@ -294,6 +294,10 @@ Error FileAccessEncrypted::_set_unix_permissions(const String &p_file, uint32_t
return ERR_UNAVAILABLE;
}
void FileAccessEncrypted::close() {
_close();
}
FileAccessEncrypted::~FileAccessEncrypted() {
_close();
}