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:
authorHans Goudey <h.goudey@me.com>2020-12-19 02:08:27 +0300
committerHans Goudey <h.goudey@me.com>2020-12-19 02:08:49 +0300
commit002722bb800e5b5d5d7e1c54e92e7d66037cb891 (patch)
tree5da9670ff0ef9b41949242519d9186749b6da341
parentc106b07e233889323e501cc033ac2010b2799bdc (diff)
Fix build error after previous commit
I tested building so many times while making this patch, but somehow the previous commit was missing a padding variable, I have no idea how.
-rw-r--r--source/blender/makesdna/DNA_node_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 743850621bc..64dd489b850 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -263,6 +263,8 @@ typedef struct bNode {
short custom1, custom2;
float custom3, custom4;
+ char _pad1[4];
+
/** Entire boundbox (worldspace). */
rctf totr;
/** Optional buttons area. */