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:
authorAntonioya <blendergit@gmail.com>2018-08-17 14:49:40 +0300
committerAntonioya <blendergit@gmail.com>2018-08-17 14:49:59 +0300
commitba60e5d41bbd7a393514d73664fe2c6e9906f3c4 (patch)
treed9b23e489322bd9a6401c1c9089dd25d30b5f017 /source/blender/makesdna/DNA_gpencil_types.h
parent8b79a150f8e170b3c015693751d657bc4000998e (diff)
GP: Increase stats file size
For big files, the size of the field for number of points was not enough
Diffstat (limited to 'source/blender/makesdna/DNA_gpencil_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 204b6e8741f..b1c3239c55c 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -359,9 +359,10 @@ typedef struct bGPdata {
/* stats */
short totlayer;
short totframe;
- short totstroke;
- short totpoint;
char pad_2[6];
+ int totstroke;
+ int totpoint;
+ char pad_3[4];
bGPdata_runtime runtime;
} bGPdata;