You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-07 19:53:17 +00:00
Merge pull request #55039 from BastiaanOlij/fix_gdnative_array_index
Fix array access in gdextensions
This commit is contained in:
@@ -774,13 +774,13 @@ static GDNativeTypePtr gdnative_packed_vector3_array_operator_index_const(const
|
||||
static GDNativeVariantPtr gdnative_array_operator_index(GDNativeTypePtr p_self, GDNativeInt p_index) {
|
||||
Array *self = (Array *)p_self;
|
||||
ERR_FAIL_INDEX_V(p_index, self->size(), nullptr);
|
||||
return (GDNativeTypePtr)&self[p_index];
|
||||
return (GDNativeVariantPtr)&self->operator[](p_index);
|
||||
}
|
||||
|
||||
static GDNativeVariantPtr gdnative_array_operator_index_const(const GDNativeTypePtr p_self, GDNativeInt p_index) {
|
||||
const Array *self = (const Array *)p_self;
|
||||
ERR_FAIL_INDEX_V(p_index, self->size(), nullptr);
|
||||
return (GDNativeTypePtr)&self[p_index];
|
||||
return (GDNativeVariantPtr)&self->operator[](p_index);
|
||||
}
|
||||
|
||||
/* OBJECT API */
|
||||
|
||||
Reference in New Issue
Block a user