mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Revert "Fix _File::get_buffer length always set to p_length"
This reverts commit 9a7e537aac.
Fixes #47971.
This commit is contained in:
@@ -2117,7 +2117,7 @@ PoolVector<uint8_t> _File::get_buffer(int p_length) const {
|
||||
w.release();
|
||||
|
||||
if (len < p_length)
|
||||
data.resize(len);
|
||||
data.resize(p_length);
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user