1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Fix exporting big templates

(cherry picked from commit 86fa3ba560)
This commit is contained in:
Rafał Mikrut
2022-10-19 08:27:40 +02:00
committed by Haoyu Qiu
parent 394bfa0e02
commit 52e25bc555
2 changed files with 11 additions and 7 deletions

View File

@@ -301,7 +301,7 @@ Error DirAccess::copy(String p_from, String p_to, int p_chmod_flags) {
const size_t copy_buffer_limit = 65536; // 64 KB
fsrc->seek_end(0);
int size = fsrc->get_position();
uint64_t size = fsrc->get_position();
fsrc->seek(0);
err = OK;
size_t buffer_size = MIN(size * sizeof(uint8_t), copy_buffer_limit);