Skip to content

Commit

Permalink
Merge pull request #91468 from akien-mga/dap-typo-parsing-PackedVecto…
Browse files Browse the repository at this point in the history
…r3Array

DAP: Fix typo in parsing of PackedVector3Array
  • Loading branch information
akien-mga committed May 2, 2024
2 parents 7fef538 + d680b9b commit b9e0223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/debugger/debug_adapter/debug_adapter_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ int DebugAdapterProtocol::parse_variant(const Variant &p_var) {
}
case Variant::PACKED_VECTOR3_ARRAY: {
int id = variable_id++;
PackedVector2Array array = p_var;
PackedVector3Array array = p_var;
DAP::Variable size;
size.name = "size";
size.type = Variant::get_type_name(Variant::INT);
Expand Down

0 comments on commit b9e0223

Please sign in to comment.