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:
authorTon Roosendaal <ton@blender.org>2009-01-10 20:38:29 +0300
committerTon Roosendaal <ton@blender.org>2009-01-10 20:38:29 +0300
commitc6ed4b0c20d4f8e952583bc52c239662571c5878 (patch)
tree2bd462e07a1172d498a3aea595df98b700721aa7 /source/blender/makesdna
parent619e5423fb591e2fb30fa3ea67c2ef520ca3d853 (diff)
2.5
Bugfix; 64 bits alignment error in vpaint. tsk to me!
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index db36772eb29..1a6fa00c841 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -380,7 +380,7 @@ typedef struct VPaint {
float size; /* of brush */
float gamma, mul;
short mode, flag;
- int tot, pad; /* allocation size of prev buffers */
+ int tot; /* allocation size of prev buffers */
unsigned int *vpaint_prev; /* previous mesh colors */
struct MDeformVert *wpaint_prev; /* previous vertex weights */