== MSVC compilation ==

two small fixes in this commit:
- added new file for nodes 
- fixed compile error in readfile.c, as reported by Jean-Michel Soler here:
  http://lists.blender.org/pipermail/bf-committers/2007-July/018849.html
This commit is contained in:
2007-07-15 14:55:09 +00:00
parent 38c84ba938
commit e64e6ae3a3
2 changed files with 5 additions and 2 deletions

View File

@@ -293,6 +293,9 @@
<File
RelativePath="..\..\..\source\blender\nodes\intern\CMP_nodes\CMP_normal.c">
</File>
<File
RelativePath="..\..\..\source\blender\nodes\intern\CMP_nodes\CMP_normalize.c">
</File>
<File
RelativePath="..\..\..\source\blender\nodes\intern\CMP_nodes\CMP_outputFile.c">
</File>

View File

@@ -6531,9 +6531,9 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
if (main->subversionfile < 3) {
for(ob = main->object.first; ob; ob= ob->id.next) {
ListBase *list;
list = &ob->constraints;
float temp_size[3];
list = &ob->constraints;
/* fix up constraints due to constraint recode changes */
if (list) {
bConstraint *curcon;