mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Make conversions from LocalVector to Vector explicit.
This commit is contained in:
parent
6efa557e9b
commit
abe3b481ae
19 changed files with 52 additions and 52 deletions
|
|
@ -525,7 +525,7 @@ void AudioStreamWAV::set_data(const Vector<uint8_t> &p_data) {
|
|||
}
|
||||
|
||||
Vector<uint8_t> AudioStreamWAV::get_data() const {
|
||||
return data;
|
||||
return Vector<uint8_t>(data);
|
||||
}
|
||||
|
||||
Error AudioStreamWAV::save_to_wav(const String &p_path) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue