[Bf-blender-cvs] [93543e66954] datablock_idprops: Fix mistake with last master merge...

Bastien Montagne noreply at git.blender.org
Wed Mar 29 16:30:19 CEST 2017


Commit: 93543e66954b1221c9ce6039718165ef4e2b7273
Author: Bastien Montagne
Date:   Wed Mar 29 08:41:42 2017 +0200
Branches: datablock_idprops
https://developer.blender.org/rB93543e66954b1221c9ce6039718165ef4e2b7273

Fix mistake with last master merge...

===================================================================

M	source/blender/blenloader/intern/readfile.c

===================================================================

diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 57f21e41530..a3eea276478 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -2804,11 +2804,11 @@ static void lib_link_ntree(FileData *fd, ID *id, bNodeTree *ntree)
 		node->id = newlibadr_us(fd, id->lib, node->id);
 
 		for (sock = node->inputs.first; sock; sock = sock->next) {
-			IDP_LibLinkProperty(sock->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
+			IDP_LibLinkProperty(sock->prop, fd);
 			lib_link_node_socket(fd, id, sock);
 		}
 		for (sock = node->outputs.first; sock; sock = sock->next) {
-			IDP_LibLinkProperty(sock->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
+			IDP_LibLinkProperty(sock->prop, fd);
 			lib_link_node_socket(fd, id, sock);
 		}
 	}




More information about the Bf-blender-cvs mailing list