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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-02-08 17:56:43 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-02-08 17:56:43 +0300
commit3fcc36d0b0677a0eb437d5ac941ea9e70a33b71f (patch)
treee086a43b2d1ba6cc0e06cb0e9f10b5f80a3bfceb /source/blender
parent8c5c7ebb0b42cd5f936b6adcaf28ae40ab581924 (diff)
2.5: RNA auto pointer type detection didn't find right types. If
two RNA structs have the same DNA structs it should use the first defined one, could be smarter but for now this makes it work again.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/makesrna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 84f4462dabe..800ee1f5ca1 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -1411,8 +1411,8 @@ static int rna_preprocess(char *outfile)
}
}
- rna_sort(brna);
rna_auto_types();
+ rna_sort(brna);
status= (DefRNA.error != 0);