mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +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
|
|
@ -1443,8 +1443,8 @@ void TextureStorage::texture_replace(RID p_texture, RID p_by_texture) {
|
|||
tex_to->tex_id = 0;
|
||||
}
|
||||
|
||||
Vector<RID> proxies_to_update = tex_to->proxies;
|
||||
Vector<RID> proxies_to_redirect = tex_from->proxies;
|
||||
Vector<RID> proxies_to_update = Vector<RID>(tex_to->proxies);
|
||||
Vector<RID> proxies_to_redirect = Vector<RID>(tex_from->proxies);
|
||||
|
||||
*tex_to = *tex_from;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue