mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Fix Dictionary set_named
Reduz optimized field indexing in 3c85703 but the changes didn't apply to dictionary so this code remained untouched. However, the logic for validity checking was changed but not updated for the dictionary case.
This commit is contained in:
parent
cebcba9022
commit
4d14d61bbc
@ -1519,7 +1519,7 @@ void Variant::set_named(const StringName &p_index, const Variant &p_value, bool
|
||||
|
||||
} break;
|
||||
default: {
|
||||
set(p_index.operator String(), p_value, r_valid);
|
||||
set(p_index.operator String(), p_value, &valid);
|
||||
} break;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user