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.
This commit is contained in:
Lukas Stockner 2016-06-23 02:41:46 +02:00
parent 29448bd99b
commit 9bce807d0b
1 changed files with 1 additions and 0 deletions

View File

@ -89,6 +89,7 @@ ustring SocketType::type_name(Type type)
ustring("boolean"),
ustring("float"),
ustring("int"),
ustring("uint"),
ustring("color"),
ustring("vector"),
ustring("point"),