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:
authorCampbell Barton <ideasman42@gmail.com>2020-06-23 06:48:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-23 06:48:19 +0300
commit3f89322f08f3dc3059161af7fccd9216055c6898 (patch)
treedfbac5612d5f9dcd1fb6bdacf4248239ef49467b /source/blender/makesdna/DNA_text_types.h
parentbdb49890cb435f6b33a41d2cf8d9ff55bc4ccaca (diff)
Cleanup: remove Text.nlines
This isn't needed and wasn't properly updated when new-lines were added.
Diffstat (limited to 'source/blender/makesdna/DNA_text_types.h')
-rw-r--r--source/blender/makesdna/DNA_text_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h
index 1102207b11c..40ab46aaf03 100644
--- a/source/blender/makesdna/DNA_text_types.h
+++ b/source/blender/makesdna/DNA_text_types.h
@@ -46,7 +46,8 @@ typedef struct Text {
char *filepath;
void *compiled;
- int flags, nlines;
+ int flags;
+ char _pad0[4];
ListBase lines;
TextLine *curl, *sell;