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>2015-07-02 09:20:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-02 09:20:22 +0300
commit1844160a221cc4df36d8f465f8904c8689099490 (patch)
treea0da2f771974471f11367e39440e1b74a4be7dbf /source/blender/makesdna
parent10c1f208b724a87258f4751e01d6bc8a4488a694 (diff)
DerivedMesh: cleanup & minor edirs
- place return args last position - move crazyspace function out of DerivedMesh header - use bool for args - flow control on own lines to ease debugging
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_object_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 2daba6a3f0d..a9276fb5820 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -192,7 +192,8 @@ typedef struct Object {
int dupon, dupoff, dupsta, dupend;
/* did last modifier stack generation need mapping support? */
- int lastNeedMapping;
+ char lastNeedMapping; /* bool */
+ char pad[3];
/* during realtime */