Revert "Fix _File::get_buffer
length always set to p_length"
This reverts commit 9a7e537aac
.
Fixes #47971.
This commit is contained in:
parent
51be345a17
commit
701fa8a779
1 changed files with 1 additions and 1 deletions
|
@ -2117,7 +2117,7 @@ PoolVector<uint8_t> _File::get_buffer(int p_length) const {
|
||||||
w.release();
|
w.release();
|
||||||
|
|
||||||
if (len < p_length)
|
if (len < p_length)
|
||||||
data.resize(len);
|
data.resize(p_length);
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue