Cleanup: Fix incorrect socket list name

This commit is contained in:
Hans Goudey 2021-03-29 22:41:34 -05:00
parent d037fef3bd
commit 73b5afd352
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ static bNodeSocketTemplate geo_node_points_to_volume_in[] = {
{-1, ""},
};
static bNodeSocketTemplate geo_node_point_translate_out[] = {
static bNodeSocketTemplate geo_node_points_to_volume_out[] = {
{SOCK_GEOMETRY, N_("Geometry")},
{-1, ""},
};
@ -262,7 +262,7 @@ void register_node_type_geo_points_to_volume()
geo_node_type_base(
&ntype, GEO_NODE_POINTS_TO_VOLUME, "Points to Volume", NODE_CLASS_GEOMETRY, 0);
node_type_socket_templates(&ntype, geo_node_points_to_volume_in, geo_node_point_translate_out);
node_type_socket_templates(&ntype, geo_node_points_to_volume_in, geo_node_points_to_volume_out);
node_type_storage(&ntype,
"NodeGeometryPointsToVolume",
node_free_standard_storage,