Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/nodes/shader/nodes/node_shader_particle_info.c')
-rw-r--r--source/blender/nodes/shader/nodes/node_shader_particle_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/nodes/shader/nodes/node_shader_particle_info.c b/source/blender/nodes/shader/nodes/node_shader_particle_info.c
index c6eabc3b2cb..80bc1c84a69 100644
--- a/source/blender/nodes/shader/nodes/node_shader_particle_info.c
+++ b/source/blender/nodes/shader/nodes/node_shader_particle_info.c
@@ -20,7 +20,7 @@
#include "../node_shader_util.h"
#include "RE_texture.h"
-static bNodeSocketTemplate outputs[] = {
+static bNodeSocketTemplate node_shader_particle_info_outputs[] = {
{SOCK_FLOAT, "Index"},
{SOCK_FLOAT, "Random"},
{SOCK_FLOAT, "Age"},
@@ -67,7 +67,7 @@ void register_node_type_sh_particle_info(void)
static bNodeType ntype;
sh_node_type_base(&ntype, SH_NODE_PARTICLE_INFO, "Particle Info", NODE_CLASS_INPUT, 0);
- node_type_socket_templates(&ntype, NULL, outputs);
+ node_type_socket_templates(&ntype, NULL, node_shader_particle_info_outputs);
node_type_exec(&ntype, NULL, NULL, node_shader_exec_particle_info);
node_type_gpu(&ntype, gpu_shader_particle_info);