From 9bce807d0b2f57ad32401fb2cc1080ab503a8a3c Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Thu, 23 Jun 2016 02:41:46 +0200 Subject: Cycles: Fix the Convert Node type registration The function that assigns names to socket types missed an entry, therefore all entries after it were mapped to the wrong name. Long-term, it might be a better solution to use a map to avoid issues like these, but for now this fix works. --- intern/cycles/graph/node_type.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'intern/cycles/graph') diff --git a/intern/cycles/graph/node_type.cpp b/intern/cycles/graph/node_type.cpp index 6c6035fdb22..5b98de778ad 100644 --- a/intern/cycles/graph/node_type.cpp +++ b/intern/cycles/graph/node_type.cpp @@ -89,6 +89,7 @@ ustring SocketType::type_name(Type type) ustring("boolean"), ustring("float"), ustring("int"), + ustring("uint"), ustring("color"), ustring("vector"), ustring("point"), -- cgit v1.2.3