Cycles: Cleanup, indentation

This commit is contained in:
Sergey Sharybin
2018-07-27 11:19:29 +02:00
parent 75c47542d7
commit 67e690f5fc
2 changed files with 4 additions and 4 deletions

View File

@@ -134,7 +134,7 @@ NodeType::~NodeType()
void NodeType::register_input(ustring name, ustring ui_name, SocketType::Type type, int struct_offset,
const void *default_value, const NodeEnum *enum_values,
const NodeType **node_type, int flags, int extra_flags)
const NodeType **node_type, int flags, int extra_flags)
{
SocketType socket;
socket.name = name;

View File

@@ -114,9 +114,9 @@ struct NodeType
void register_input(ustring name, ustring ui_name, SocketType::Type type,
int struct_offset, const void *default_value,
const NodeEnum *enum_values = NULL,
const NodeType **node_type = NULL,
int flags = 0, int extra_flags = 0);
const NodeEnum *enum_values = NULL,
const NodeType **node_type = NULL,
int flags = 0, int extra_flags = 0);
void register_output(ustring name, ustring ui_name, SocketType::Type type);
const SocketType *find_input(ustring name) const;